diff options
Diffstat (limited to 'client/e2e/protractor.conf.js')
-rw-r--r-- | client/e2e/protractor.conf.js | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/client/e2e/protractor.conf.js b/client/e2e/protractor.conf.js new file mode 100644 index 000000000..30705cb72 --- /dev/null +++ b/client/e2e/protractor.conf.js | |||
@@ -0,0 +1,29 @@ | |||
1 | // Protractor configuration file, see link for more information | ||
2 | // https://github.com/angular/protractor/blob/master/lib/config.ts | ||
3 | |||
4 | const {SpecReporter} = require('jasmine-spec-reporter') | ||
5 | |||
6 | exports.config = { | ||
7 | allScriptsTimeout: 11000, | ||
8 | specs: [ | ||
9 | './src/**/*.e2e-spec.ts' | ||
10 | ], | ||
11 | capabilities: { | ||
12 | 'browserName': 'chrome' | ||
13 | }, | ||
14 | directConnect: true, | ||
15 | baseUrl: 'http://localhost:4200/', | ||
16 | framework: 'jasmine', | ||
17 | jasmineNodeOpts: { | ||
18 | showColors: true, | ||
19 | defaultTimeoutInterval: 30000, | ||
20 | print: function () {} | ||
21 | }, | ||
22 | |||
23 | onPrepare () { | ||
24 | require('ts-node').register({ | ||
25 | project: require('path').join(__dirname, './tsconfig.e2e.json') | ||
26 | }) | ||
27 | jasmine.getEnv().addReporter(new SpecReporter({spec: {displayStacktrace: true}})) | ||
28 | } | ||
29 | } | ||