Files
30-seconds-of-code/test/dropWhile/dropWhile.test.js
Angelos Chalaris 5e2add03cb Codacy issue fixes
2018-06-18 21:18:53 +03:00

10 lines
322 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)).toEqual([3,4]);
});