Update client dependencies
This commit is contained in:
parent
98eacc80d3
commit
51afea5411
|
@ -94,8 +94,8 @@ export class LoginPage {
|
|||
}
|
||||
|
||||
private getSuffix () {
|
||||
return browser.config.baseUrl
|
||||
? browser.config.baseUrl.slice(-1)
|
||||
return browser.options.baseUrl
|
||||
? browser.options.baseUrl.slice(-1)
|
||||
: '1'
|
||||
}
|
||||
}
|
||||
|
|
|
@ -244,7 +244,7 @@ describe('Signup', () => {
|
|||
|
||||
before(async () => {
|
||||
// FIXME: typings are wrong, get returns a promise
|
||||
emailPort = await (browser.sharedStore.get(browser.config.baseUrl + '-emailPort') as unknown as Promise<number>)
|
||||
emailPort = await (browser.sharedStore.get(browser.options.baseUrl + '-emailPort') as unknown as Promise<number>)
|
||||
|
||||
await MockSMTPServer.Instance.collectEmails(emailPort, emails)
|
||||
})
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
"target": "es5",
|
||||
"types": [
|
||||
"node",
|
||||
"webdriverio/async",
|
||||
"@wdio/globals/types",
|
||||
"@wdio/mocha-framework",
|
||||
"expect-webdriverio"
|
||||
]
|
||||
|
|
|
@ -119,7 +119,6 @@ export const config = {
|
|||
},
|
||||
|
||||
before: function () {
|
||||
require('expect-webdriverio')
|
||||
require('./src/commands/upload')
|
||||
}
|
||||
} as Partial<WebdriverIO.Config>
|
||||
|
|
|
@ -72,12 +72,12 @@
|
|||
"@types/webtorrent": "^0.109.0",
|
||||
"@typescript-eslint/eslint-plugin": "^5.43.0",
|
||||
"@typescript-eslint/parser": "^5.43.0",
|
||||
"@wdio/browserstack-service": "^7.25.2",
|
||||
"@wdio/cli": "^7.25.2",
|
||||
"@wdio/local-runner": "^7.25.2",
|
||||
"@wdio/mocha-framework": "^7.25.2",
|
||||
"@wdio/shared-store-service": "^7.25.2",
|
||||
"@wdio/spec-reporter": "^7.25.1",
|
||||
"@wdio/browserstack-service": "^8.10.5",
|
||||
"@wdio/cli": "^8.10.5",
|
||||
"@wdio/local-runner": "^8.10.5",
|
||||
"@wdio/mocha-framework": "^8.10.4",
|
||||
"@wdio/shared-store-service": "^8.10.5",
|
||||
"@wdio/spec-reporter": "^8.10.5",
|
||||
"angular2-hotkeys": "^13.1.0",
|
||||
"angularx-qrcode": "16.0.0",
|
||||
"babel-loader": "^9.1.0",
|
||||
|
@ -86,7 +86,7 @@
|
|||
"cache-chunk-store": "^3.0.0",
|
||||
"chart.js": "^3.8.0",
|
||||
"chartjs-plugin-zoom": "~1.2.1",
|
||||
"chromedriver": "^110.0.0",
|
||||
"chromedriver": "^113.0.0",
|
||||
"core-js": "^3.22.8",
|
||||
"css-loader": "^6.2.0",
|
||||
"debug": "^4.3.1",
|
||||
|
@ -95,9 +95,9 @@
|
|||
"eslint-plugin-import": "2.27.5",
|
||||
"eslint-plugin-jsdoc": "^44.2.4",
|
||||
"eslint-plugin-prefer-arrow": "latest",
|
||||
"expect-webdriverio": "^3.4.0",
|
||||
"expect-webdriverio": "^4.2.3",
|
||||
"focus-visible": "^5.0.2",
|
||||
"geckodriver": "^3.2.0",
|
||||
"geckodriver": "^4.0.0",
|
||||
"hls.js": "1.4.2",
|
||||
"html-loader": "^4.1.0",
|
||||
"html-webpack-plugin": "^5.3.1",
|
||||
|
@ -126,15 +126,15 @@
|
|||
"stream-browserify": "^3.0.0",
|
||||
"stream-http": "^3.0.0",
|
||||
"stylelint": "^15.1.0",
|
||||
"stylelint-config-sass-guidelines": "^9.0.1",
|
||||
"stylelint-config-sass-guidelines": "^10.0.0",
|
||||
"ts-loader": "^9.3.0",
|
||||
"tslib": "^2.4.0",
|
||||
"typescript": "~4.9.5",
|
||||
"url": "^0.11.0",
|
||||
"video.js": "^7.19.2",
|
||||
"videostream": "~3.2.1",
|
||||
"wdio-chromedriver-service": "^7.3.2",
|
||||
"wdio-geckodriver-service": "^3.0.2",
|
||||
"wdio-chromedriver-service": "^8.1.1",
|
||||
"wdio-geckodriver-service": "^5.0.1",
|
||||
"webpack": "^5.73.0",
|
||||
"webpack-bundle-analyzer": "^4.4.2",
|
||||
"webpack-cli": "^5.0.1",
|
||||
|
|
1796
client/yarn.lock
1796
client/yarn.lock
File diff suppressed because it is too large
Load Diff
|
@ -5,7 +5,7 @@
|
|||
"private": true,
|
||||
"licence": "AGPL-3.0",
|
||||
"engines": {
|
||||
"node": ">=12.x",
|
||||
"node": ">=16.x",
|
||||
"yarn": ">=1.x"
|
||||
},
|
||||
"bin": {
|
||||
|
|
Loading…
Reference in New Issue