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