protractor_conf.js 663 B

123456789101112131415161718192021222324
  1. // An example configuration file.
  2. exports.config = {
  3. allScriptsTimeout: 99999,
  4. // Do not start a Selenium Standalone sever - only run this using chrome.
  5. directConnect: true,
  6. //chromeDriver: './node_modules/protractor/selenium/chromedriver',
  7. seleniumArgs: ['-browserTimeout=60'],
  8. // Capabilities to be passed to the webdriver instance.
  9. capabilities: {
  10. 'browserName': 'firefox'
  11. },
  12. // Spec patterns are relative to the current working directly when
  13. // protractor is called.
  14. specs: ['test/e2e/**/*.spec.js'],
  15. // Options to be passed to Jasmine-node.
  16. jasmineNodeOpts: {
  17. showColors: true,
  18. defaultTimeoutInterval: 30000,
  19. }
  20. };