Skip to content

Commit

Permalink
Trying to see where OS X is hanging up
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Gaunt committed Oct 10, 2016
1 parent 70a2266 commit f4cf65e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/webdriver-browser/web-driver-browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,9 @@ class WebDriverBrowser {
(Date.now() - global.TRAVIS_TEST.start));
}
if (minVersion) {
return this.getVersionNumber() >= minVersion;
const minVerionMet = this.getVersionNumber() >= minVersion;
console.log('Testing min version: ', minVerionMet);
return minVerionMet;
}
if (global.TRAVIS_TEST) {
console.log('isValid 6: ' +
Expand Down

0 comments on commit f4cf65e

Please sign in to comment.