Fix first-login username flow

这个提交包含在:
cryptocommuniums-afk
2026-03-14 22:37:15 +08:00
父节点 8d3faecb15
当前提交 bcdd790d91
修改 3 个文件,包含 40 行新增12 行删除

查看文件

@@ -2,7 +2,10 @@ import { expect, test } from "@playwright/test";
import { installAppMocks } from "./helpers/mockApp";
test("login redirects into dashboard with mocked auth", async ({ page }) => {
await installAppMocks(page, { authenticated: false });
await installAppMocks(page, {
authenticated: false,
authMeNullResponsesAfterLogin: 1,
});
await page.goto("/login");
await expect(page.getByTestId("login-title")).toBeVisible();