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

13 lines
332 B
JavaScript

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