Codacy issue fixes
This commit is contained in:
@ -5,5 +5,5 @@ test('dropRightWhile is a Function', () => {
|
||||
expect(dropRightWhile).toBeInstanceOf(Function);
|
||||
});
|
||||
test('Removes elements from the end of an array until the passed function returns true.', () => {
|
||||
expect(dropRightWhile([1, 2, 3, 4], n => n < 3)).toEqual([1, 2])
|
||||
expect(dropRightWhile([1, 2, 3, 4], n => n < 3)).toEqual([1, 2]);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user