Files
30-seconds-of-code/test/omitBy/omitBy.test.js
Angelos Chalaris a78f5db260 Test migration to jest by hand
Apparently using regular expressions is way easier.
2018-06-18 15:15:56 +03:00

11 lines
338 B
JavaScript

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