Test migration to jest by hand
Apparently using regular expressions is way easier.
This commit is contained in:
5
test/dropRightWhile/dropRightWhile.js
Normal file
5
test/dropRightWhile/dropRightWhile.js
Normal file
@ -0,0 +1,5 @@
|
||||
const dropRightWhile = (arr, func) => {
|
||||
while (arr.length > 0 && !func(arr[arr.length - 1])) arr = arr.slice(0, -1);
|
||||
return arr;
|
||||
};
|
||||
module.exports = dropRightWhile;
|
||||
10
test/dropRightWhile/dropRightWhile.test.js
Normal file
10
test/dropRightWhile/dropRightWhile.test.js
Normal file
@ -0,0 +1,10 @@
|
||||
const expect = require('expect');
|
||||
const dropRightWhile = require('./dropRightWhile.js');
|
||||
|
||||
|
||||
test('dropRightWhile is a Function', () => {
|
||||
expect(dropRightWhile).toBeInstanceOf(Function);
|
||||
});
|
||||
t.deepEqual(dropRightWhile([1, 2, 3, 4], n => n < 3), [1, 2], 'Removes elements from the end of an array until the passed function returns true.');
|
||||
|
||||
|
||||
Reference in New Issue
Block a user