UNPKG

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