We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2389ce commit 2b06e77Copy full SHA for 2b06e77
1 file changed
testing/e2e/src/pages/__root.page.ts
@@ -25,6 +25,8 @@ export abstract class RootPage {
25
}
26
27
async goto<TPath extends RouteTo>(...args: NavigateArgs<TPath>): Promise<void> {
28
- await this.$ref.goto(this.getUrlWithParams(...args));
+ const url = this.getUrlWithParams(...args);
29
+ await this.$ref.goto(url);
30
+ await this.expect.toHaveURL(url);
31
32
0 commit comments