Revision 6dd40a40de63ac288aa01a12325525d015023a49 authored by maudoux on 03 April 2019, 20:12:59 UTC, committed by maudoux on 03 April 2019, 20:13:53 UTC
1 parent fe248d1
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