diff options
Diffstat (limited to 'client')
-rw-r--r-- | client/angular.json | 5 | ||||
-rw-r--r-- | client/e2e/local-protractor.conf.js | 37 |
2 files changed, 42 insertions, 0 deletions
diff --git a/client/angular.json b/client/angular.json index 2cf2ecd62..bd3c7216e 100644 --- a/client/angular.json +++ b/client/angular.json | |||
@@ -133,6 +133,11 @@ | |||
133 | "options": { | 133 | "options": { |
134 | "protractorConfig": "e2e/protractor.conf.js", | 134 | "protractorConfig": "e2e/protractor.conf.js", |
135 | "devServerTarget": "PeerTube:serve:e2e" | 135 | "devServerTarget": "PeerTube:serve:e2e" |
136 | }, | ||
137 | "configurations": { | ||
138 | "local": { | ||
139 | "protractorConfig": "e2e/local-protractor.conf.js" | ||
140 | } | ||
136 | } | 141 | } |
137 | }, | 142 | }, |
138 | "lint": { | 143 | "lint": { |
diff --git a/client/e2e/local-protractor.conf.js b/client/e2e/local-protractor.conf.js new file mode 100644 index 000000000..53edf26f2 --- /dev/null +++ b/client/e2e/local-protractor.conf.js | |||
@@ -0,0 +1,37 @@ | |||
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: 25000, | ||
8 | specs: ['./src/**/*.e2e-spec.ts'], | ||
9 | |||
10 | seleniumAddress: 'http://localhost:4444/wd/hub', | ||
11 | |||
12 | capabilities: { | ||
13 | 'browserName': 'firefox', | ||
14 | 'moz:firefoxOptions': { | ||
15 | 'args': ["-headless"], | ||
16 | "log": { | ||
17 | "level": "info" // default is "info" | ||
18 | } | ||
19 | } | ||
20 | }, | ||
21 | |||
22 | // maxSessions: 1, | ||
23 | baseUrl: 'http://localhost:3333/', | ||
24 | framework: 'jasmine', | ||
25 | jasmineNodeOpts: { | ||
26 | showColors: true, | ||
27 | defaultTimeoutInterval: 45000, | ||
28 | print: function() {} | ||
29 | }, | ||
30 | |||
31 | onPrepare() { | ||
32 | require('ts-node').register({ | ||
33 | project: require('path').join(__dirname, './tsconfig.e2e.json') | ||
34 | }) | ||
35 | jasmine.getEnv().addReporter(new SpecReporter({ spec: { displayStacktrace: true } })) | ||
36 | } | ||
37 | } | ||