Files
30-seconds-of-code/test/matchesWith/matchesWith.test.js
2018-06-18 17:40:29 +03:00

15 lines
473 B
JavaScript

const expect = require('expect');
const matchesWith = require('./matchesWith.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();
});