diff options
author | Rigel Kent <sendmemail@rigelk.eu> | 2018-10-01 13:40:21 +0200 |
---|---|---|
committer | Rigel Kent <sendmemail@rigelk.eu> | 2018-10-01 13:40:28 +0200 |
commit | 9e3e248109ffe5fc208c23081cbcffdb9a682ff4 (patch) | |
tree | 951223299727201fc5bbddd6c595725c3919a372 /client/e2e | |
parent | 8c202ae8d4e0ee17f804b4977ea9ce37057cd023 (diff) | |
download | PeerTube-9e3e248109ffe5fc208c23081cbcffdb9a682ff4.tar.gz PeerTube-9e3e248109ffe5fc208c23081cbcffdb9a682ff4.tar.zst PeerTube-9e3e248109ffe5fc208c23081cbcffdb9a682ff4.zip |
add protractor profile for local tests
Diffstat (limited to 'client/e2e')
-rw-r--r-- | client/e2e/local-protractor.conf.js | 37 |
1 files changed, 37 insertions, 0 deletions
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 | } | ||