We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad5e82f commit 330286dCopy full SHA for 330286d
spec/helper.js
@@ -462,7 +462,7 @@ global.it_only_postgres_version = version => {
462
};
463
464
global.it_only_node_version = version => {
465
- const envVersion = process.env.NODE_VERSION;
+ const envVersion = process.version;
466
if (!envVersion || semver.satisfies(envVersion, version)) {
467
return it;
468
} else {
@@ -480,7 +480,7 @@ global.fit_only_mongodb_version = version => {
480
481
482
global.fit_only_node_version = version => {
483
484
485
return fit;
486
0 commit comments