Browse Source

Update client dependencies

develop
Chocobozzz 4 days ago
parent
commit
51afea5411
No known key found for this signature in database GPG Key ID: 583A612D890159BE
7 changed files with 996 additions and 871 deletions
  1. +2
    -2
      client/e2e/src/po/login.po.ts
  2. +1
    -1
      client/e2e/src/suites-local/signup.e2e-spec.ts
  3. +1
    -1
      client/e2e/tsconfig.json
  4. +0
    -1
      client/e2e/wdio.main.conf.ts
  5. +12
    -12
      client/package.json
  6. +979
    -853
      client/yarn.lock
  7. +1
    -1
      package.json

+ 2
- 2
client/e2e/src/po/login.po.ts View File

@@ -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'
}
}

+ 1
- 1
client/e2e/src/suites-local/signup.e2e-spec.ts View File

@@ -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)
})


+ 1
- 1
client/e2e/tsconfig.json View File

@@ -8,7 +8,7 @@
"target": "es5",
"types": [
"node",
"webdriverio/async",
"@wdio/globals/types",
"@wdio/mocha-framework",
"expect-webdriverio"
]


+ 0
- 1
client/e2e/wdio.main.conf.ts View File

@@ -119,7 +119,6 @@ export const config = {
},

before: function () {
require('expect-webdriverio')
require('./src/commands/upload')
}
} as Partial<WebdriverIO.Config>

+ 12
- 12
client/package.json View File

@@ -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",


+ 979
- 853
client/yarn.lock
File diff suppressed because it is too large
View File


+ 1
- 1
package.json View File

@@ -5,7 +5,7 @@
"private": true,
"licence": "AGPL-3.0",
"engines": {
"node": ">=12.x",
"node": ">=16.x",
"yarn": ">=1.x"
},
"bin": {


Loading…
Cancel
Save