Skip to content

Commit

Permalink
Make sure it's cloned
Browse files Browse the repository at this point in the history
  • Loading branch information
benogle committed Oct 21, 2021
1 parent 9788646 commit 906f776
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/react-signature-frame/test/src/helpers.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ describe('omit', function () {
it('returns an object minus the keys passed', async function () {
const original = { a: 1, b: 2 }
expect(omit(original)).to.eql(original)
expect(omit(original)).not.to.equal(original)
expect(omit(original, [])).to.eql(original)
expect(omit(original, ['b'])).to.eql({ a: 1 })
})
Expand Down

0 comments on commit 906f776

Please sign in to comment.