Files
30-seconds-of-code/test/isOdd.test.js
2019-09-28 13:14:36 +03:00

12 lines
268 B
JavaScript

const {isOdd} = require('./_30s.js');
test('isOdd is a Function', () => {
expect(isOdd).toBeInstanceOf(Function);
});
test('4 is not an odd number', () => {
expect(isOdd(4)).toBeFalsy();
});
test('5 is an odd number', () => {
expect(isOdd(5)).toBeTruthy();
});