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 3857456 commit 519d4b9Copy full SHA for 519d4b9
packages/browser-integration-tests/suites/public-api/captureException/errorEvent/test.ts
@@ -4,7 +4,11 @@ import type { Event } from '@sentry/types';
4
import { sentryTest } from '../../../../utils/fixtures';
5
import { getFirstSentryEnvelopeRequest } from '../../../../utils/helpers';
6
7
-sentryTest('should capture an ErrorEvent', async ({ getLocalTestPath, page }) => {
+sentryTest('should capture an ErrorEvent', async ({ getLocalTestPath, page, browserName }) => {
8
+ // On Firefox, the ErrorEvent has the `error` property and thus is handled separately
9
+ if (browserName === 'firefox') {
10
+ sentryTest.skip();
11
+ }
12
const url = await getLocalTestPath({ testDir: __dirname });
13
14
const eventData = await getFirstSentryEnvelopeRequest<Event>(page, url);
0 commit comments