Andre Schneider

Results 1 issues of Andre Schneider

Using the following test ``` it('Can compare objects', () => { expect(err({ important: 42, useless: 7 })).toMatchObject(err({ important: 42 })); expect(err({ important: 42, useless: 7 })).not.toMatchObject(err({ important: 43 })); });...