Skip to content

Commit

Permalink
Fix condition
Browse files Browse the repository at this point in the history
  • Loading branch information
marco-c committed Dec 19, 2017
1 parent 8f69c6c commit ba283fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/helpers/download-test-browsers.js
Expand Up @@ -2,7 +2,7 @@

// The latest version of Selenium doesn't support Node 4.
const semver = require('semver');
if (!semver.satisfies(process.version, '5')) {
if (!semver.gte(process.version, '5.0.0')) {
return;
}

Expand Down
2 changes: 1 addition & 1 deletion test/testSelenium.js
Expand Up @@ -2,7 +2,7 @@

// The latest version of Selenium doesn't support Node 4.
const semver = require('semver');
if (!semver.satisfies(process.version, '5')) {
if (!semver.gte(process.version, '5.0.0')) {
return;
}

Expand Down

0 comments on commit ba283fb

Please sign in to comment.