Files
30-seconds-of-code/test/partial/partial.test.js
2018-06-18 15:54:48 +03:00

17 lines
386 B
JavaScript

const expect = require('expect');
const partial = require('./partial.js');
test('partial is a Function', () => {
expect(partial).toBeInstanceOf(Function);
});
function greet(greeting, name) {
return greeting + ' ' + name + '!';
}
const greetHello = partial(greet, 'Hello');
test('Prepends arguments', () => {
expect(greetHello('John'), 'Hello John!').toBe()
});