.
CI / test (push) Successful in 5m19s
CI / e2e (push) Failing after 5m38s
CI / pr_and_merge (push) Has been skipped

This commit is contained in:
2025-12-14 22:14:14 +09:00
parent 5d89a2690c
commit 5bb3353fab
3 changed files with 22 additions and 7 deletions
+3
View File
@@ -133,6 +133,9 @@ test("서로 다른 유저는 /projects 에서 자신의 프로젝트만 볼 수
await page.goto("/projects");
const toolbar = page.getByTestId("projects-toolbar");
await expect(toolbar).toBeVisible();
await expect(page.getByText("user-a-project")).toBeVisible();
await expect(page.getByText("user-b-project")).toHaveCount(0);
});