File tree 1 file changed +3
-3
lines changed
packages/kit/test/apps/basics/test/cross-platform
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -633,13 +633,13 @@ test.describe('Prefetching', () => {
633
633
await page . goto ( '/routing/hashes/a' ) ;
634
634
635
635
await clicknav ( '[href="#preload"]' ) ;
636
- await expect ( page . url ( ) ) . toBe ( `${ baseURL } /routing/hashes/a#preload` ) ;
636
+ expect ( page . url ( ) ) . toBe ( `${ baseURL } /routing/hashes/a#preload` ) ;
637
637
638
638
await clicknav ( '[href="/routing/hashes/a"]' ) ;
639
- await expect ( page . url ( ) ) . toBe ( `${ baseURL } /routing/hashes/a` ) ;
639
+ expect ( page . url ( ) ) . toBe ( `${ baseURL } /routing/hashes/a` ) ;
640
640
641
641
await clicknav ( '[href="#preload"]' ) ;
642
- await expect ( page . url ( ) ) . toBe ( `${ baseURL } /routing/hashes/a#preload` ) ;
642
+ expect ( page . url ( ) ) . toBe ( `${ baseURL } /routing/hashes/a#preload` ) ;
643
643
} ) ;
644
644
645
645
test ( 'does not rerun load on calls to duplicate preload hash route' , async ( { app, page } ) => {
You can’t perform that action at this time.
0 commit comments