Files
30-seconds-of-code/test/truthCheckCollection.test.js
2018-10-19 20:18:00 +03:00

15 lines
428 B
JavaScript

const expect = require('expect');
const {truthCheckCollection} = require('./_30s.js');
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'
)
).toBeTruthy();
});