-
Notifications
You must be signed in to change notification settings - Fork 7
/
protractor.conf.js
32 lines (25 loc) · 934 Bytes
/
protractor.conf.js
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
// See https://github.com/angular/protractor/blob/master/docs/referenceConf.js
exports.config = {
// Boolean. If true, Protractor will connect directly to the browser Drivers
// at the locations specified by chromeDriver and firefoxPath. Only Chrome
// and Firefox are supported for direct connect.
directConnect: true,
// Spec patterns are relative to the location of this config.
specs: [
'spec/*spec.js'
],
capabilities: {
browserName: 'chrome'
},
// A base URL for your application under test. Calls to protractor.get()
// with relative paths will be prepended with this.
baseUrl: 'http://localhost:9000/testapp/',
// The timeout in milliseconds for each script run on the browser. This should
// be longer than the maximum time your application needs to stabilize between
// tasks.
allScriptsTimeout: 11000,
framework: 'jasmine2',
jasmineNodeOpts: {
showColors: true
}
};