Skip to content

Commit 5b3dd63

Browse files
committed
test(project-bootstrap): fix bad selector that caused test to fail
1 parent c86ee3e commit 5b3dd63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/project-bootstrap.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ test("Project bootstrap works", async ({ page, baseURL }) => {
7474
await page.locator(`div[role="button"]:has-text("")`).click();
7575

7676
// Click text=Evaluation
77-
await page.locator("text=Evaluation").click();
77+
await page.locator(`li:has-text("Evaluation")`).click();
7878

7979
// Uncheck input[name="isPrivate"]
8080
await page.locator(`input[name="isPrivate"]`).uncheck();

0 commit comments

Comments
 (0)