Files
30-seconds-of-code/test/dropWhile.test.js
2018-10-19 20:18:00 +03:00

10 lines
320 B
JavaScript

const expect = require('expect');
const {dropWhile} = require('./_30s.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)).toEqual([3, 4]);
});