protractor.conf.js 517 B

123456789101112131415161718192021
  1. // The main suite of Protractor tests.
  2. exports.config = {
  3. seleniumServerJar: __dirname +
  4. '/../node_modules/gulp-protractor' +
  5. '/node_modules/protractor/selenium/selenium-server-standalone-2.44.0.jar',
  6. browserName: 'chrome',
  7. // Exclude patterns are relative to this directory.
  8. // exclude: [],
  9. jasmineNodeOpts: {
  10. showColors: true,
  11. isVerbose: true, // List all tests in the console
  12. includeStackTrace: true,
  13. defaultTimeoutInterval: 30000
  14. }
  15. //baseUrl: 'http://localhost:8081'
  16. };