Files
30-seconds-of-code/test/findLastIndex/findLastIndex.test.js
2018-06-18 16:44:12 +03:00

10 lines
330 B
JavaScript

const expect = require('expect');
const findLastIndex = require('./findLastIndex.js');
test('findLastIndex is a Function', () => {
expect(findLastIndex).toBeInstanceOf(Function);
});
test('Finds last index for which the given function returns true', () => {
expect(findLastIndex([1, 2, 3, 4], n => n % 2 === 1)).toBe(2);
});