Test migration to jest by hand
Apparently using regular expressions is way easier.
This commit is contained in:
5
test/dropWhile/dropWhile.js
Normal file
5
test/dropWhile/dropWhile.js
Normal file
@ -0,0 +1,5 @@
|
||||
const dropWhile = (arr, func) => {
|
||||
while (arr.length > 0 && !func(arr[0])) arr = arr.slice(1);
|
||||
return arr;
|
||||
};
|
||||
module.exports = dropWhile;
|
||||
10
test/dropWhile/dropWhile.test.js
Normal file
10
test/dropWhile/dropWhile.test.js
Normal file
@ -0,0 +1,10 @@
|
||||
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.');
|
||||
|
||||
|
||||
Reference in New Issue
Block a user