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

14 lines
368 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')).toBe('Hello John!');
});