Skip to content

Commit

Permalink
Updated to tap@15 (#664)
Browse files Browse the repository at this point in the history
  • Loading branch information
mcollina committed Apr 2, 2021
1 parent 0365a6e commit 8158def
Show file tree
Hide file tree
Showing 46 changed files with 1,132 additions and 1,132 deletions.
2 changes: 1 addition & 1 deletion .taprc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
esm: false
ts: false
jsx: false
flow: false
coverage: true
expose-gc: true
timeout: 60
check-coverage: false
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"sinon": "^9.2.4",
"snazzy": "^8.0.0",
"standard": "^14.3.4",
"tap": "^14.10.8",
"tap": "^15.0.0",
"tsd": "^0.13.1"
},
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion test/abort-controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ for (const { AbortControllerImpl, controllerName } of controllers) {
bufs.push(buf)
})
response.body.on('end', () => {
t.strictEqual('hello', Buffer.concat(bufs).toString('utf8'))
t.equal('hello', Buffer.concat(bufs).toString('utf8'))
})
})

Expand Down
2 changes: 1 addition & 1 deletion test/abort-event-emitter.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ test('Abort before sending request (no body)', (t) => {
bufs.push(buf)
})
response.body.on('end', () => {
t.strictEqual('hello', Buffer.concat(bufs).toString('utf8'))
t.equal('hello', Buffer.concat(bufs).toString('utf8'))
})
})

Expand Down

0 comments on commit 8158def

Please sign in to comment.