-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathprotractor.conf.js
More file actions
37 lines (27 loc) · 805 Bytes
/
protractor.conf.js
File metadata and controls
37 lines (27 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// An example configuration file.
exports.config = {
baseUrl: 'http://localhost:3000/',
directConnect: true,
// Capabilities to be passed to the webdriver instance.
capabilities: {
'browserName': 'chrome',
'chromeOptions': {
'args': ['show-fps-counter=true']
}
},
// Framework to use. Jasmine is recommended.
framework: 'jasmine2',
// Spec patterns are relative to the current working directory when
// protractor is called.
specs: ['dist-tests/**/*.e2e-spec.js'],
// Options to be passed to Jasmine.
jasmineNodeOpts: {
defaultTimeoutInterval: 30000
},
allScriptsTimeout: 110000,
chromeDriver: 'node_modules/chromedriver/lib/chromedriver/chromedriver.exe',
useAllAngular2AppRoots: true,
onPrepare: function() {
browser.ignoreSynchronization = true;
}
};