chimp: chimp/dist/lib/cucumberjs/hooks.js:19 function timed out after 60000 milliseconds

Expected behaviour

Running chimp cucumber/selenium tests through Travis CI using Chrome as the browser, I expect tests to run. However, the job fails with the error below. Previously, we successfully ran them using FIrefox.

Actual behaviour
 /home/travis/build/uuuuuuCloud/xxxxx-ui/node_modules/chimp/node_modules/cucumber/lib/cucumber/runtime/event_broadcaster.js:30
            throw error;
            ^
node_modules/chimp/dist/lib/cucumberjs/hooks.js:19 function timed out after 60000 milliseconds
[chimp][cucumber] Closed with code 1
Version & tools:
Console / Log Output

Gist


Join our Slack xolv.io/community #chimp channel, where you can find help and help others.

About this issue

  • Original URL
  • State: closed
  • Created 8 years ago
  • Reactions: 10
  • Comments: 30 (13 by maintainers)

Most upvoted comments

Does anybody know how to override that value globally?

You can change it for specific step definition like this:

module.exports = function () {
    this.setDefaultTimeout(120 * 1000);
    this.When(/^My step definition$/, function (table) {

    });
};