cognitom / wdio-phantomjs-service

WebdriverIO service to start & stop PhantomJS
MIT License
8 stars 1 forks source link

Test failed after upgrading to macOS X Sierra #3

Closed cognitom closed 8 years ago

cognitom commented 8 years ago

If you just use this module as a user, you don't have to care about this issue. It would work fine.

wdio can't connect to PhantomJS during the tests. Looks strange. The tests on Travis are OK, these on El Capitan are also OK. Hmm... Maybe related to this issue: https://github.com/karma-runner/karma-phantomjs-launcher/issues/138

cognitom commented 8 years ago

Just a workaround, I've extended its timeout. Now it seems working.

exports.config = {
  ...
  mochaOpts: {
    ...
    timeout: 30000
  },
  ...
}