We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ec7f20 commit fdadd6aCopy full SHA for fdadd6a
1 file changed
test/test.js
@@ -46,7 +46,11 @@ describe('remoteForm', function () {
46
})
47
48
it('installs remoteForm on form reference', function (done) {
49
- remoteForm(htmlForm, async () => done())
+ remoteForm(htmlForm, async form => {
50
+ assert.equal(form, htmlForm)
51
+ done()
52
+ })
53
+
54
document.querySelector('button[type=submit]').click()
55
56
0 commit comments