Test cleanup and fixes [s-t]
This commit is contained in:
@ -1,11 +1,9 @@
|
||||
const expect = require('expect');
|
||||
const truthCheckCollection = require('./truthCheckCollection.js');
|
||||
|
||||
|
||||
test('truthCheckCollection is a Function', () => {
|
||||
test('truthCheckCollection is a Function', () => {
|
||||
expect(truthCheckCollection).toBeInstanceOf(Function);
|
||||
});
|
||||
test('second argument is truthy on all elements of a collection', () => {
|
||||
expect(truthCheckCollection([{ user: 'Tinky-Winky', sex: 'male' }, { user: 'Dipsy', sex: 'male' }], 'sex')).toBe(true)
|
||||
test('second argument is truthy on all elements of a collection', () => {
|
||||
expect(truthCheckCollection([{ user: 'Tinky-Winky', sex: 'male' }, { user: 'Dipsy', sex: 'male' }], 'sex')).toBeTruthy();
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user