Skip to content

Commit

Permalink
Update predicate check
Browse files Browse the repository at this point in the history
Node 18.19.0 no longer allows requests after close()
  • Loading branch information
kanongil authored and Marsup committed Mar 21, 2024
1 parent d9c5fc5 commit d492bbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .labrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ const Somever = require('@hapi/somever');

module.exports = {
'coverage-predicates': {
allowsStoppedReq: Somever.match(process.version, '<=18'),
allowsStoppedReq: Somever.match(process.version, '<18.19.0'),
}
};

0 comments on commit d492bbf

Please sign in to comment.