Files
30-seconds-of-code/test/dropWhile/dropWhile.test.js
Angelos Chalaris cc7b76d0b3 Test files linted
2018-08-03 10:39:26 +03:00

10 lines
323 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]);
});