Skip to content

Commit 029fed3

Browse files
committed
test: use strict equality (deepEqual) to compare objects.
1 parent fdadd6a commit 029fed3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ describe('remoteForm', function () {
4747

4848
it('installs remoteForm on form reference', function (done) {
4949
remoteForm(htmlForm, async form => {
50-
assert.equal(form, htmlForm)
50+
assert.deepEqual(form, htmlForm)
5151
done()
5252
})
5353

0 commit comments

Comments
 (0)