Skip to content

Commit ff08b44

Browse files
committed
chore: test.fixme
1 parent d8b6637 commit ff08b44

File tree

1 file changed

+13
-10
lines changed

1 file changed

+13
-10
lines changed

starters/e2e/qwikcity/nav.spec.ts

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -459,16 +459,19 @@ test.describe("actions", () => {
459459
);
460460
});
461461
// TODO: Fix this test (currently not working because the action redirect adds a `/q-data.json` at the end of the path)
462-
// test("action with redirect without query params in a route with query param should redirect to route without query params", async ({
463-
// page,
464-
// }) => {
465-
// await page.goto("/qwikcity-test/action-redirect-without-search-params/?test=test");
466-
// const button = page.locator("button");
467-
// await button.click();
468-
// await page.waitForURL(
469-
// "/qwikcity-test/action-redirect-without-search-params-target/",
470-
// );
471-
// });
462+
test.fixme(
463+
"action with redirect without query params in a route with query param should redirect to route without query params",
464+
async ({ page }) => {
465+
await page.goto(
466+
"/qwikcity-test/action-redirect-without-search-params/?test=test",
467+
);
468+
const button = page.locator("button");
469+
await button.click();
470+
await page.waitForURL(
471+
"/qwikcity-test/action-redirect-without-search-params-target/",
472+
);
473+
},
474+
);
472475
test("media in home page", async ({ page }) => {
473476
await page.goto("/qwikcity-test/");
474477

0 commit comments

Comments
 (0)