Revision 82242481e1ce6f587d2841d1c089ce0826ab6a7d authored by Xavier Guimard on 03 March 2019, 08:21:39 UTC, committed by Xavier Guimard on 03 March 2019, 08:21:39 UTC
2 parent s 44eb01b + 285b1f8
Raw File
protractor-conf.js
exports.config = {
  allScriptsTimeout: 300000,

  // Specific test
   specs: process.env.E2E_TESTS,
  // All tests
  //specs: ['portal/*.js', 'handler/*.js', 'manager/*.js' ],

    capabilities: {
    //'browserName': 'firefox'
    'browserName': 'chrome'
  },

  chromeOnly: true,

  baseUrl: 'http://manager.example.com:' + process.env.TESTWEBSERVERPORT + '/',

  framework: 'jasmine',

  jasmineNodeOpts: {
    defaultTimeoutInterval: 60000
  }
};
back to top