Skip to content

Commit 8c69f32

Browse files
committed
ci(test): disable all additional sentry integrations
1 parent 54a8386 commit 8c69f32

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

src/sentry.client.config.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ if (sharedSentryConfig.dsn) {
77
Sentry.init({
88
...sharedSentryConfig,
99
integrations: [
10-
Sentry.browserProfilingIntegration(),
11-
Sentry.captureConsoleIntegration(),
12-
Sentry.consoleLoggingIntegration(),
13-
Sentry.graphqlClientIntegration({ endpoints: [/\/graphql$/] }),
14-
Sentry.httpClientIntegration(),
15-
Sentry.piniaIntegration(usePinia()),
16-
Sentry.replayIntegration(),
17-
Sentry.zodErrorsIntegration(),
18-
10+
// Sentry.browserProfilingIntegration(),
11+
// Sentry.captureConsoleIntegration(),
12+
// Sentry.consoleLoggingIntegration(),
13+
// Sentry.graphqlClientIntegration({ endpoints: [/\/graphql$/] }),
14+
// Sentry.httpClientIntegration(),
15+
// Sentry.piniaIntegration(usePinia()),
16+
// Sentry.replayIntegration(),
17+
// Sentry.zodErrorsIntegration(),
18+
//
1919
// // enable if more components or hooks should be tracked
2020
// Sentry.vueIntegration({
2121
// tracingOptions: {

src/sentry.server.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const sharedSentryConfig = getSharedSentryConfig({
2222
if (sharedSentryConfig.dsn) {
2323
Sentry.init({
2424
...sharedSentryConfig,
25-
integrations: [Sentry.consoleLoggingIntegration()],
25+
// integrations: [Sentry.consoleLoggingIntegration()],
2626
})
2727
} else {
2828
console.warn(

0 commit comments

Comments
 (0)