Test cleanup and fixes [a-b]
This commit is contained in:
@ -5,6 +5,8 @@ const sortedLastIndexBy = require('./sortedLastIndexBy.js');
|
||||
test('sortedLastIndexBy is a Function', () => {
|
||||
expect(sortedLastIndexBy).toBeInstanceOf(Function);
|
||||
});
|
||||
t.equal(sortedLastIndexBy([{ x: 4 }, { x: 5 }], { x: 4 }, o => o.x), 1, 'Returns the highest index to insert the element without messing up the list order');
|
||||
test('Returns the highest index to insert the element without messing up the list order', () => {
|
||||
expect(sortedLastIndexBy([{ x: 4 }, { x: 5 }], { x: 4 }, o => o.x), 1).toBe()
|
||||
});
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user