diff options
author | Chocobozzz <me@florianbigard.com> | 2021-12-14 17:17:01 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-12-14 17:17:01 +0100 |
commit | 3cf68b869decf07ff7435fe1436d4f3134df1bf4 (patch) | |
tree | 836efe5ddc626fef3ba4c96269efbca305f46256 /client/e2e/wdio.local.conf.ts | |
parent | a6f919e455f2c6ae8f2194da4aa66824a6bfd09e (diff) | |
download | PeerTube-3cf68b869decf07ff7435fe1436d4f3134df1bf4.tar.gz PeerTube-3cf68b869decf07ff7435fe1436d4f3134df1bf4.tar.zst PeerTube-3cf68b869decf07ff7435fe1436d4f3134df1bf4.zip |
Ability for admins to set default upload values
Diffstat (limited to 'client/e2e/wdio.local.conf.ts')
-rw-r--r-- | client/e2e/wdio.local.conf.ts | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/client/e2e/wdio.local.conf.ts b/client/e2e/wdio.local.conf.ts index 43b820ca6..d02679e06 100644 --- a/client/e2e/wdio.local.conf.ts +++ b/client/e2e/wdio.local.conf.ts | |||
@@ -1,3 +1,4 @@ | |||
1 | import { afterLocalSuite, beforeLocalSession, beforeLocalSuite } from './src/utils' | ||
1 | import { config as mainConfig } from './wdio.main.conf' | 2 | import { config as mainConfig } from './wdio.main.conf' |
2 | 3 | ||
3 | const prefs = { | 4 | const prefs = { |
@@ -11,7 +12,7 @@ module.exports = { | |||
11 | 12 | ||
12 | runner: 'local', | 13 | runner: 'local', |
13 | 14 | ||
14 | maxInstances: 2, | 15 | maxInstancesPerCapability: 1, |
15 | 16 | ||
16 | capabilities: [ | 17 | capabilities: [ |
17 | { | 18 | { |
@@ -34,12 +35,8 @@ module.exports = { | |||
34 | 35 | ||
35 | services: [ 'chromedriver', 'geckodriver' ], | 36 | services: [ 'chromedriver', 'geckodriver' ], |
36 | 37 | ||
37 | beforeSession: function (config, capabilities) { | 38 | beforeSession: beforeLocalSession, |
38 | if (capabilities['browserName'] === 'chrome') { | 39 | beforeSuite: beforeLocalSuite, |
39 | config.baseUrl = 'http://localhost:9001' | 40 | afterSuite: afterLocalSuite |
40 | } else { | ||
41 | config.baseUrl = 'http://localhost:9002' | ||
42 | } | ||
43 | } | ||
44 | } as WebdriverIO.Config | 41 | } as WebdriverIO.Config |
45 | } | 42 | } |