Test cleanup and fixes [o-p]
This commit is contained in:
@ -1,12 +1,9 @@
|
||||
const expect = require('expect');
|
||||
const omitBy = require('./omitBy.js');
|
||||
|
||||
|
||||
test('omitBy is a Function', () => {
|
||||
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'), { b: '2' }).toEqual()
|
||||
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' });
|
||||
});
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user