conf.js 678 B

123456789101112131415161718192021222324252627
  1. // An example configuration file.
  2. exports.config = {
  3. directConnect: true,
  4. // Capabilities to be passed to the webdriver instance.
  5. capabilities: {
  6. 'browserName': 'chrome'
  7. },
  8. // Framework to use. Jasmine is recommended.
  9. framework: 'jasmine',
  10. // Spec patterns are relative to the current working directory when
  11. // protractor is called.
  12. specs: [
  13. 'input_spec.js',
  14. 'mat_paginator_spec.js'
  15. ],
  16. // Disable promise manager because we are going to use async/await
  17. SELENIUM_PROMISE_MANAGER: false,
  18. // Options to be passed to Jasmine.
  19. jasmineNodeOpts: {
  20. defaultTimeoutInterval: 30000
  21. }
  22. };