Skip to content

Commit

Permalink
Update test/Eq.ts
Browse files Browse the repository at this point in the history
Co-authored-by: Misha Kaletsky <[email protected]>
  • Loading branch information
gcanti and mmkal committed May 4, 2020
1 parent 9fde17c commit 42a1000
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions test/Eq.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ describe('Eq', () => {
const eq = E.UnknownRecord
assert.deepStrictEqual(eq.equals({}, {}), true)
assert.deepStrictEqual(eq.equals({ a: 1 }, { a: 1 }), true)
assert.deepStrictEqual(eq.equals({ a: 1 }, { a: 2 }), true)
assert.deepStrictEqual(eq.equals({ a: 1 }, { a: 1, b: true }), false)
assert.deepStrictEqual(eq.equals({ a: 1, b: true }, { a: 1 }), false)
})
Expand Down

0 comments on commit 42a1000

Please sign in to comment.