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 fc6b445 commit 8afe3d3Copy full SHA for 8afe3d3
test/instrumentation/modules/hapi.js
@@ -13,8 +13,8 @@ var semver = require('semver')
13
// hapi 17+ requires Node.js 8.9.0 or higher
14
if (semver.lt(process.version, '8.9.0') && semver.gte(pkg.version, '17.0.0')) process.exit()
15
16
-// hapi does not work on early versions of Node.js 10 because of https://github.com/nodejs/node/issues/20516
17
-if (semver.satisfies(process.version, '>=10.0.0-rc <10.4.0')) process.exit()
+// hapi does not work on Node.js 10 because of https://github.com/nodejs/node/issues/20516
+if (semver.gte(process.version, '10.0.0-rc')) process.exit()
18
19
var http = require('http')
20
0 commit comments