We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0700d0 commit 700c5e8Copy full SHA for 700c5e8
starters/e2e/qwikrouter/auth.e2e.ts
@@ -86,6 +86,7 @@ function tests() {
86
87
/*********** Go to Dashboard settings, shouldn't redirect if signed in ***********/
88
await page.locator('[data-test-link="dashboard-settings"]').click();
89
+ await page.waitForURL("/qwikrouter-test/dashboard/settings/");
90
await assertPage(ctx, {
91
pathname: "/qwikrouter-test/dashboard/settings/",
92
title: "Dashboard Settings - Qwik",
@@ -95,6 +96,7 @@ function tests() {
95
96
97
/*********** Sign out ***********/
98
await page.locator('[data-test-link="dashboard-sign-out"]').click();
99
+ await page.waitForURL("/qwikrouter-test/sign-in/");
100
101
pathname: "/qwikrouter-test/sign-in/",
102
});
0 commit comments