Files
30-seconds-of-code/test/omitBy/omitBy.test.js
Angelos Chalaris 4f1e8b48b6 Test files linted
2018-08-03 10:39:26 +03:00

10 lines
351 B
JavaScript

const expect = require('expect');
const omitBy = require('./omitBy.js');
test('omitBy is a Function', () => {
expect(omitBy).toBeInstanceOf(Function);
});
test('Creates an object composed of the properties the given function returns falsey for', () => {
expect(omitBy({ a: 1, b: '2', c: 3 }, x => typeof x === 'number')).toEqual({ b: '2' });
});