123456789101112131415161718192021222324252627 |
- // An example configuration file.
- exports.config = {
- directConnect: true,
-
- // Capabilities to be passed to the webdriver instance.
- capabilities: {
- 'browserName': 'chrome'
- },
-
- // Framework to use. Jasmine is recommended.
- framework: 'jasmine',
-
- // Spec patterns are relative to the current working directory when
- // protractor is called.
- specs: [
- 'input_spec.js',
- 'mat_paginator_spec.js'
- ],
-
- // Disable promise manager because we are going to use async/await
- SELENIUM_PROMISE_MANAGER: false,
-
- // Options to be passed to Jasmine.
- jasmineNodeOpts: {
- defaultTimeoutInterval: 30000
- }
- };
|