We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a18acc commit b253886Copy full SHA for b253886
test/sealwatch.test.js
@@ -25,7 +25,7 @@ const { network, blocktime } = helpers
25
const users = require('./fixtures/users')
26
27
test('watch', function (t) {
28
- t.plan(3)
+ t.plan(2)
29
30
const obj = {
31
[TYPE]: 'something',
@@ -109,8 +109,10 @@ test('watch', function (t) {
109
110
// give time for duplicates to arrive if there are any
111
setTimeout(function () {
112
- t.ok(createdActions.newwatch)
113
- t.ok(createdActions.readseal)
+ t.deepEquals(createdActions, {
+ newwatch: true,
114
+ readseal: true
115
+ })
116
117
sealwatch.stop()
118
if (network.api.close) network.api.close()
0 commit comments