Files
30-seconds-of-code/test/dropRightWhile/dropRightWhile.test.js
Angelos Chalaris 17fb304f04 Codacy issue fixes
2018-06-18 21:18:53 +03:00

10 lines
360 B
JavaScript

const expect = require('expect');
const dropRightWhile = require('./dropRightWhile.js');
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]);
});