Files
30-seconds-of-code/test/stableSort/stableSort.test.js
Angelos Chalaris a78f5db260 Test migration to jest by hand
Apparently using regular expressions is way easier.
2018-06-18 15:15:56 +03:00

14 lines
335 B
JavaScript

const expect = require('expect');
const stableSort = require('./stableSort.js');
test('stableSort is a Function', () => {
expect(stableSort).toBeInstanceOf(Function);
});
const arr = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
const compare = () => 0;
t.deepEqual(stableSort(arr, compare), arr, 'Array is properly sorted');