1
0
forked from baron/baron-sso

fix(auth): add sessionStorage fallback for web auto-login

- add shared token store backend with local/session/memory fallback
- cover fallback behavior with flutter unit tests
- add wasm e2e coverage for sessionStorage login state
- document mobile installed webapp auto-login policy
This commit is contained in:
Lectom C Han
2026-03-30 18:02:34 +09:00
parent 2f893a6d9e
commit 72551e5f9d
6 changed files with 344 additions and 74 deletions

View File

@@ -21,13 +21,20 @@ export default defineConfig({
screenshot: 'only-on-failure',
video: 'retain-on-failure',
locale: process.env.LOCALE ?? 'ko-KR',
serviceWorkers: 'block',
},
projects: [
{
name: 'chromium',
name: 'chromium-desktop',
use: {
...devices['Desktop Chrome'],
serviceWorkers: 'block',
},
},
{
name: 'chromium-mobile-webapp',
use: {
...devices['Pixel 7'],
serviceWorkers: 'allow',
},
},
],