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

17 lines
484 B
JavaScript

const expect = require('expect');
const {matchesWith} = require('./_30s.js');
test('matchesWith is a Function', () => {
expect(matchesWith).toBeInstanceOf(Function);
});
const isGreeting = val => /^h(?:i|ello)$/.test(val);
test('Returns true for two objects with similar values, based on the provided function', () => {
expect(
matchesWith(
{ greeting: 'hello' },
{ greeting: 'hi' },
(oV, sV) => isGreeting(oV) && isGreeting(sV)
)
).toBeTruthy();
});