it('works with two arguments', () => {
   expect(filterByEnvironment('non-prod', 'prod')).toBe('prod');
 });
 it('works with three arguments', () => {
   expect(filterByEnvironment('dev', 'staging', 'prod')).toBe('prod');
 });