Test files linted

This commit is contained in:
Angelos Chalaris
2018-08-03 10:39:26 +03:00
parent 5ef1fab5fd
commit cc7b76d0b3
153 changed files with 754 additions and 463 deletions

View File

@ -14,5 +14,9 @@ const other = {
c: 'foo'
};
test('Merges two objects', () => {
expect(merge(object, other)).toEqual({ a: [ { x: 2 }, { y: 4 }, { z: 3 } ], b: [ 1, 2, 3 ], c: 'foo' });
expect(merge(object, other)).toEqual({
a: [{ x: 2 }, { y: 4 }, { z: 3 }],
b: [1, 2, 3],
c: 'foo'
});
});