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 f3d7a3a commit 02d4a7eCopy full SHA for 02d4a7e
packages/kit/test/apps/basics/test/client.test.js
@@ -1020,11 +1020,11 @@ test.describe('untrack', () => {
1020
expect(await page.textContent('p.id')).toBe(id);
1021
});
1022
1023
- test('untracks universal load function', async ({ page }) => {
+ test('untracks universal load function', async ({ page, clicknav }) => {
1024
await page.goto('/untrack/universal/1');
1025
expect(await page.textContent('p.url')).toBe('/untrack/universal/1');
1026
const id = await page.textContent('p.id');
1027
- await page.click('a[href="/untrack/universal/2"]');
+ await clicknav('a[href="/untrack/universal/2"]');
1028
expect(await page.textContent('p.url')).toBe('/untrack/universal/2');
1029
1030
0 commit comments