Skip to content

Commit

Permalink
Lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rwillians committed Oct 28, 2022
1 parent 3d969ad commit f699c97
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
"coverage": "nyc --reporter=text npm test",
"coverage:report": "nyc report --reporter=lcov",
"lint": "standard --global describe --global it",
"lint:fix": "standard --global describe --global it --fix",
"test": "mocha test/*.test.js --check-leaks --full-trace --use_strict --recursive"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion test/rescue.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ describe('const callables = rescue.all([fn1, fn2, fn3])', () => {
return Promise.all([
// Proves that the rescued function contains additional behavir that is
// added when a fn is wrapped with `rescue`.
expect(rescuedFn()).to.eventually.be.rejectedWith(TypeError, 'The last parameter received by express-rescue is not a function'),
expect(rescuedFn()).to.eventually.be.rejectedWith(TypeError, 'The last parameter received by express-rescue is not a function')
])
})
})

0 comments on commit f699c97

Please sign in to comment.