Files
30-seconds-of-code/test/partial/partial.test.js
Angelos Chalaris 4f7da1be9b Test migration to jest by hand
Apparently using regular expressions is way easier.
2018-06-18 15:15:56 +03:00

15 lines
362 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');
t.equal(greetHello('John'), 'Hello John!', 'Prepends arguments');