Test cleanup and fixes [s-t]

This commit is contained in:
Angelos Chalaris
2018-06-18 18:37:35 +03:00
parent ba3e684a27
commit 9cf2c4680c
53 changed files with 286 additions and 409 deletions

View File

@ -1,12 +1,9 @@
const expect = require('expect');
const sortedIndexBy = require('./sortedIndexBy.js');
test('sortedIndexBy is a Function', () => {
test('sortedIndexBy is a Function', () => {
expect(sortedIndexBy).toBeInstanceOf(Function);
});
test('Returns the lowest index to insert the element without messing up the list order', () => {
expect(sortedIndexBy([{ x: 4 }, { x: 5 }], { x: 4 }, o => o.x), 0).toBe()
test('Returns the lowest index to insert the element without messing up the list order', () => {
expect(sortedIndexBy([{ x: 4 }, { x: 5 }], { x: 4 }, o => o.x)).toBe(0);
});