fix(e2e): stabilize authenticated unlock flows

This commit is contained in:
Codex
2026-07-22 16:53:09 +08:00
parent 8bd67b83c5
commit e813333607
16 changed files with 116 additions and 28 deletions
+4 -1
View File
@@ -12,7 +12,10 @@ export default defineConfig({
fullyParallel: true,
forbidOnly: Boolean(process.env.CI),
retries: process.env.CI ? 2 : 0,
workers: process.env.CI ? 1 : undefined,
// Next.js dev + Turbopack can return incomplete module payloads when the
// local mock suite compiles many routes concurrently. Keep this tier
// deterministic locally as well as in CI.
workers: 1,
reporter: process.env.CI
? [["list"], ["html", { open: "never" }]]
: [["list"], ["html", { open: "never" }]],