File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
packages/qwik/src/core/shared/utils Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 1
- import { isDev , isServer } from '@qwik.dev/core' ;
1
+ import { isDev , isServer } from '@qwik.dev/core/build ' ;
2
2
import { throwErrorAndStop } from './log' ;
3
3
import type { ValueOrPromise } from './types' ;
4
4
Original file line number Diff line number Diff line change @@ -86,6 +86,7 @@ function tests() {
86
86
87
87
/*********** Go to Dashboard settings, shouldn't redirect if signed in ***********/
88
88
await page . locator ( '[data-test-link="dashboard-settings"]' ) . click ( ) ;
89
+ await page . waitForURL ( "/qwikrouter-test/dashboard/settings/" ) ;
89
90
await assertPage ( ctx , {
90
91
pathname : "/qwikrouter-test/dashboard/settings/" ,
91
92
title : "Dashboard Settings - Qwik" ,
@@ -95,6 +96,7 @@ function tests() {
95
96
96
97
/*********** Sign out ***********/
97
98
await page . locator ( '[data-test-link="dashboard-sign-out"]' ) . click ( ) ;
99
+ await page . waitForURL ( "/qwikrouter-test/sign-in/" ) ;
98
100
await assertPage ( ctx , {
99
101
pathname : "/qwikrouter-test/sign-in/" ,
100
102
} ) ;
You can’t perform that action at this time.
0 commit comments