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 5069029 commit 383920fCopy full SHA for 383920f
dev-packages/e2e-tests/test-applications/sveltekit-2/tests/sdk.test.ts
@@ -4,6 +4,7 @@ import { waitForInitialPageload } from './utils';
4
test.describe('SDK-internal behavior', () => {
5
test("Doesn't inject fetch proxy script for SvelteKit>=2.16.0", async ({ page }) => {
6
await waitForInitialPageload(page, { route: '/client-error' });
7
+ // @ts-expect-error - this is the variable the fetch proxy script sets if it would be injected
8
const proxyHandle = await page.waitForFunction(() => globalThis._sentryFetchProxy);
9
expect(proxyHandle).toBeUndefined();
10
});
0 commit comments