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,17 +1,14 @@
const expect = require('expect');
const transform = require('./transform.js');
test('transform is a Function', () => {
test('transform is a Function', () => {
expect(transform).toBeInstanceOf(Function);
});
t.deepEqual(transform(
test('Transforms an object', () => {
expect(transform(
{ a: 1, b: 2, c: 1 },
(r, v, k) => {
(r[v] || (r[v] = [])).push(k);
return r;
},
{}
), { '1': ['a', 'c'], '2': ['b'] }, 'Transforms an object');
},{}).toEqual({ '1': ['a', 'c'], '2': ['b'] });
});