add test for isEven

This commit is contained in:
Stefan Feješ
2018-01-10 08:30:53 +01:00
parent 79929a3e55
commit 3df3027cb0

View File

@ -5,9 +5,9 @@ test('Testing isEven', (t) => {
//For more information on all the methods supported by tape
//Please go to https://github.com/substack/tape
t.true(typeof isEven === 'function', 'isEven is a Function');
t.equal(isEven(4), true, '4 is even number');
t.false(isEven(5), false, '5 is not an even number');
//t.deepEqual(isEven(args..), 'Expected');
//t.equal(isEven(args..), 'Expected');
//t.false(isEven(args..), 'Expected');
//t.throws(isEven(args..), 'Expected');
t.end();
});