diff options
author | Chocobozzz <me@florianbigard.com> | 2023-05-25 08:46:13 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2023-05-25 09:24:55 +0200 |
commit | 51afea54116192c99621c5758b8f9154a4218f9f (patch) | |
tree | ab6d1d52f4c9344394f95afb407e5ba208018a05 /client/e2e/src | |
parent | 98eacc80d398a2d17ea93ffebc1dd08d3f31ee0b (diff) | |
download | PeerTube-51afea54116192c99621c5758b8f9154a4218f9f.tar.gz PeerTube-51afea54116192c99621c5758b8f9154a4218f9f.tar.zst PeerTube-51afea54116192c99621c5758b8f9154a4218f9f.zip |
Update client dependencies
Diffstat (limited to 'client/e2e/src')
-rw-r--r-- | client/e2e/src/po/login.po.ts | 4 | ||||
-rw-r--r-- | client/e2e/src/suites-local/signup.e2e-spec.ts | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/client/e2e/src/po/login.po.ts b/client/e2e/src/po/login.po.ts index 30469cf1b..e2362ef51 100644 --- a/client/e2e/src/po/login.po.ts +++ b/client/e2e/src/po/login.po.ts | |||
@@ -94,8 +94,8 @@ export class LoginPage { | |||
94 | } | 94 | } |
95 | 95 | ||
96 | private getSuffix () { | 96 | private getSuffix () { |
97 | return browser.config.baseUrl | 97 | return browser.options.baseUrl |
98 | ? browser.config.baseUrl.slice(-1) | 98 | ? browser.options.baseUrl.slice(-1) |
99 | : '1' | 99 | : '1' |
100 | } | 100 | } |
101 | } | 101 | } |
diff --git a/client/e2e/src/suites-local/signup.e2e-spec.ts b/client/e2e/src/suites-local/signup.e2e-spec.ts index ad0cc218e..aaf5683f1 100644 --- a/client/e2e/src/suites-local/signup.e2e-spec.ts +++ b/client/e2e/src/suites-local/signup.e2e-spec.ts | |||
@@ -244,7 +244,7 @@ describe('Signup', () => { | |||
244 | 244 | ||
245 | before(async () => { | 245 | before(async () => { |
246 | // FIXME: typings are wrong, get returns a promise | 246 | // FIXME: typings are wrong, get returns a promise |
247 | emailPort = await (browser.sharedStore.get(browser.config.baseUrl + '-emailPort') as unknown as Promise<number>) | 247 | emailPort = await (browser.sharedStore.get(browser.options.baseUrl + '-emailPort') as unknown as Promise<number>) |
248 | 248 | ||
249 | await MockSMTPServer.Instance.collectEmails(emailPort, emails) | 249 | await MockSMTPServer.Instance.collectEmails(emailPort, emails) |
250 | }) | 250 | }) |