Skip to content

Commit

Permalink
remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
fernandolguevara committed Aug 6, 2022
1 parent 5ed9a90 commit 8d9fb6c
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions test/compression.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,10 +129,7 @@ describe('compression()', function () {
.set('Accept-Encoding', 'gzip')
.expect(shouldHaveHeader('Content-Encoding'))
.expect(shouldHaveBodyLength('hello world'.length))
.expect(200, function (err) {
console.log(1)
done(err)
})
.expect(200, done)
})

var run = /^v0\.12\./.test(process.version) ? it : it.skip
Expand Down

0 comments on commit 8d9fb6c

Please sign in to comment.