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

11 lines
309 B
JavaScript

const expect = require('expect');
const dropWhile = require('./dropWhile.js');
test('dropWhile is a Function', () => {
expect(dropWhile).toBeInstanceOf(Function);
});
t.deepEqual(dropWhile([1, 2, 3, 4], n => n >= 3), [3,4], 'Removes elements in an array until the passed function returns true.');