forked from mgechev/angular-seed
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprotractor.conf.js
More file actions
42 lines (31 loc) · 745 Bytes
/
protractor.conf.js
File metadata and controls
42 lines (31 loc) · 745 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
38
39
40
41
42
const config = {
baseUrl: 'http://localhost:5555/',
specs: [
'./dist/e2e/**/*.e2e-spec.js'
],
exclude: [],
// 'jasmine' by default will use the latest jasmine framework
framework: 'jasmine',
// allScriptsTimeout: 110000,
jasmineNodeOpts: {
// showTiming: true,
showColors: true,
isVerbose: false,
includeStackTrace: false,
// defaultTimeoutInterval: 400000
},
directConnect: true,
multicapabilities: [{
browserName: 'chrome'
}],
onPrepare: function () {
browser.ignoreSynchronization = false;
},
};
if (process.env.TRAVIS) {
config.multicapabilities.push({
browserName: 'firefox'
});
// https://github.com/angular/protractor/issues/4253
}
exports.config = config;