Test files linted
This commit is contained in:
@ -4,10 +4,7 @@ const when = require('./when.js');
|
||||
test('when is a Function', () => {
|
||||
expect(when).toBeInstanceOf(Function);
|
||||
});
|
||||
const doubleEvenNumbers = when(
|
||||
(x) => x % 2 === 0,
|
||||
(x) => x * 2
|
||||
);
|
||||
const doubleEvenNumbers = when(x => x % 2 === 0, x => x * 2);
|
||||
test('Returns the proper result', () => {
|
||||
expect(doubleEvenNumbers(2)).toBe(4);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user