Is this refactor warranted?
Before:
const ROLES = ['boss', 'big boss', 'major boss', 'super boss', 'the boss'];
describe('with Alpha Team details but', () => {
describe('without Big Boss', () => {
const expected_roles = ROLES.filter(role => role !== 'big boss');