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 22ce8dc commit 44a7576Copy full SHA for 44a7576
dev-packages/browser-integration-tests/suites/integrations/globalHandlers/dataUrls/test.ts
@@ -27,7 +27,7 @@ sentryTest('detects and handles data urls on first stack frame', async ({ getLoc
27
stacktrace: {
28
frames: [
29
{
30
- colno: 13,
+ colno: expect.any(Number), // webkit reports different colno than chromium
31
filename: '<data:text/javascript,base64>',
32
function: '?',
33
in_app: true,
@@ -36,6 +36,6 @@ sentryTest('detects and handles data urls on first stack frame', async ({ getLoc
36
],
37
},
38
type: 'Error',
39
- value: 'Uncaught Error: Error thrown in worker',
+ value: expect.stringMatching(/(Uncaught )?Error: Error thrown in worker/), // webikt throws without "Uncaught "
40
});
41
0 commit comments