Browse Source

Fix Playwright test conf and update deps

pull/6176/head
Timshel 2 days ago
parent
commit
0293291996
  1. 2
      playwright/.env.template
  2. 961
      playwright/package-lock.json
  3. 10
      playwright/package.json
  4. 2
      playwright/test.env

2
playwright/.env.template

@ -39,7 +39,7 @@ DUMMY_AUTHORITY=http://${KC_HTTP_HOST}:${KC_HTTP_PORT}/realms/${DUMMY_REALM}
###################### ######################
ROCKET_ADDRESS=0.0.0.0 ROCKET_ADDRESS=0.0.0.0
ROCKET_PORT=8000 ROCKET_PORT=8000
DOMAIN=http://127.0.0.1:${ROCKET_PORT} DOMAIN=http://localhost:${ROCKET_PORT}
LOG_LEVEL=info,oidcwarden::sso=debug LOG_LEVEL=info,oidcwarden::sso=debug
I_REALLY_WANT_VOLATILE_STORAGE=true I_REALLY_WANT_VOLATILE_STORAGE=true

961
playwright/package-lock.json

File diff suppressed because it is too large

10
playwright/package.json

@ -8,14 +8,14 @@
"author": "", "author": "",
"license": "ISC", "license": "ISC",
"devDependencies": { "devDependencies": {
"@playwright/test": "^1.53.0", "@playwright/test": "^1.54.2",
"dotenv": "^16.5.0", "dotenv": "^16.6.1",
"dotenv-expand": "^12.0.2", "dotenv-expand": "^12.0.2",
"maildev": "npm:@timshel_npm/maildev@^3.1.2" "maildev": "npm:@timshel_npm/maildev@^3.2.1"
}, },
"dependencies": { "dependencies": {
"mysql2": "^3.14.1", "mysql2": "^3.14.3",
"otpauth": "^9.4.0", "otpauth": "^9.4.0",
"pg": "^8.16.0" "pg": "^8.16.3"
} }
} }

2
playwright/test.env

@ -52,7 +52,7 @@ DUMMY_AUTHORITY=http://${KC_HTTP_HOST}:${KC_HTTP_PORT}/realms/${DUMMY_REALM}
# Vaultwarden Config # # Vaultwarden Config #
###################### ######################
ROCKET_PORT=8003 ROCKET_PORT=8003
DOMAIN=http://127.0.0.1:${ROCKET_PORT} DOMAIN=http://localhost:${ROCKET_PORT}
LOG_LEVEL=info,oidcwarden::sso=debug LOG_LEVEL=info,oidcwarden::sso=debug
LOGIN_RATELIMIT_MAX_BURST=100 LOGIN_RATELIMIT_MAX_BURST=100

Loading…
Cancel
Save