-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathprotractor.conf.js
More file actions
36 lines (34 loc) · 873 Bytes
/
protractor.conf.js
File metadata and controls
36 lines (34 loc) · 873 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
// Protractor configuration file, see link for more information
// https://github.com/angular/protractor/blob/master/docs/referenceConf.js
/*global jasmine */
var SpecReporter = require('jasmine-spec-reporter');
exports.config = {
allScriptsTimeout: 11000,
specs: [
'./src/**/*.e2e.ts'
],
exclude: [],
capabilities: {
'browserName': 'chrome'
},
directConnect: true,
baseUrl: 'http://localhost:8100/',
framework: 'jasmine2',
jasmineNodeOpts: {
showTiming: true,
showColors: true,
isVerbose: false,
includeStackTrace: false,
defaultTimeoutInterval: 400000,
print: function() {}
},
useAllAngular2AppRoots: true,
beforeLaunch: function() {
require('ts-node').register({
project: '.'
});
},
onPrepare: function() {
jasmine.getEnv().addReporter(new SpecReporter({displayStacktrace: true}));
}
};