File tree Expand file tree Collapse file tree 1 file changed +13
-10
lines changed Expand file tree Collapse file tree 1 file changed +13
-10
lines changed Original file line number Diff line number Diff line change @@ -459,16 +459,19 @@ test.describe("actions", () => {
459
459
) ;
460
460
} ) ;
461
461
// 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
+ ) ;
472
475
test ( "media in home page" , async ( { page } ) => {
473
476
await page . goto ( "/qwikcity-test/" ) ;
474
477
You can’t perform that action at this time.
0 commit comments