Skip to content

Commit 7992010

Browse files
author
Luca Forstner
committed
Try fix ci
1 parent 15d5894 commit 7992010

File tree

2 files changed

+8
-23
lines changed
  • packages/integration-tests/suites/public-api/extraerrordata

2 files changed

+8
-23
lines changed
Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,5 @@
11
try {
2-
const error = new Error('simple_extended_error');
3-
error.foo = {
4-
bar: {
5-
baz: {
6-
boo: {
7-
bam: {
8-
bat: {
9-
bingo: 'this is a very deeply nested field',
10-
},
11-
},
12-
},
13-
},
14-
},
15-
};
16-
throw error;
2+
throw Error('test_simple_error');
173
} catch (err) {
184
Sentry.captureException(err);
195
}
Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
import * as Sentry from '@sentry/browser';
2-
import { ExtraErrorData as ExtraErrorDataIntegration } from '@sentry/integrations';
2+
// import { ExtraErrorData as ExtraErrorDataIntegration } from '@sentry/integrations';
33

44
window.Sentry = Sentry;
55

66
Sentry.init({
77
dsn: 'https://[email protected]/1337',
8-
integrations: integrations => [
9-
...integrations,
10-
new ExtraErrorDataIntegration({
11-
depth: 10,
12-
}),
13-
],
14-
normalizeDepth: 3,
8+
// integrations: [
9+
// new ExtraErrorDataIntegration({
10+
// depth: 10,
11+
// }),
12+
// ],
13+
// normalizeDepth: 3,
1514
});

0 commit comments

Comments
 (0)