Files
30-seconds-of-code/test/flip/flip.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
349 B
JavaScript

const expect = require('expect');
const flip = require('./flip.js');
test('flip is a Function', () => {
expect(flip).toBeInstanceOf(Function);
});
let a = { name: 'John Smith' };
let b = {};
const mergeFrom = flip(Object.assign);
let mergePerson = mergeFrom.bind(null, a);
t.deepEqual(mergePerson(b), a, 'Flips argument order');