-
Notifications
You must be signed in to change notification settings - Fork 0
/
protractor.sauce.conf.js
43 lines (41 loc) · 1.03 KB
/
protractor.sauce.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
33
34
35
36
37
38
39
40
41
42
43
/*global jasmine */
const { SpecReporter } = require('jasmine-spec-reporter');
exports.config = {
// saucelabs
sauceUser: process.env.SAUCE_USERNAME,
sauceKey: process.env.SAUCE_ACCESS_KEY,
multiCapabilities: [
{
'name': 'Chrome',
'browserName': 'chrome',
'tunnel-identifier': process.env.TRAVIS_JOB_NUMBER,
'build': process.env.TRAVIS_BUILD_NUMBER
}
],
getPageTimeout: 40000,
baseUrl: 'http://localhost:4200/',
allScriptsTimeout: 40000,
specs: [
'./e2e/**/*.e2e-spec.ts'
],
framework: 'jasmine',
jasmineNodeOpts: {
showColors: true,
defaultTimeoutInterval: 40000,
isVerbose: true,
includeStackTrace: true
},
beforeLaunch: function() {
require('ts-node').register({
project: 'e2e/tsconfig.e2e.json'
});
},
onPrepare: function() {
jasmine.getEnv().addReporter(new SpecReporter({
spec: {
displayStacktrace: true
}
})
);
}
};