Test cleanup and fixes [w-z]
This commit is contained in:
@ -1,18 +1,16 @@
|
||||
const expect = require('expect');
|
||||
const when = require('./when.js');
|
||||
|
||||
|
||||
test('when is a Function', () => {
|
||||
test('when is a Function', () => {
|
||||
expect(when).toBeInstanceOf(Function);
|
||||
});
|
||||
|
||||
const doubleEvenNumbers = when(
|
||||
(x) => x % 2 === 0,
|
||||
(x) => x * 2
|
||||
);
|
||||
|
||||
t.true(doubleEvenNumbers(2) === 4);
|
||||
t.true(doubleEvenNumbers(1) === 1);
|
||||
|
||||
|
||||
|
||||
const doubleEvenNumbers = when(
|
||||
(x) => x % 2 === 0,
|
||||
(x) => x * 2
|
||||
);
|
||||
test('Returns the proper result', () => {
|
||||
expect(doubleEvenNumbers(2)).toBe(4);
|
||||
});
|
||||
test('Returns the proper result', () => {
|
||||
expect(doubleEvenNumbers(1)).toBe(1);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user