Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/tests-e2e/tests/appPagesRouter/parallel.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ test("Parallel routes", async ({ page }) => {
await expect(routeB).not.toBeVisible();

// Enable A, which should be visible but not B
await page.locator('input[name="a"]').check();
await page.locator('input[name="a"]').setChecked(true);
routeA = page.getByText("Parallel Route A");
await expect(routeA).toBeVisible();
await expect(routeB).not.toBeVisible();

// Enable B, both should be visible
await page.locator('input[name="b"]').check();
await page.locator('input[name="b"]').setChecked(true);
routeB = page.getByText("Parallel Route B");
await expect(routeA).toBeVisible();
await expect(routeB).toBeVisible();
Expand Down