Skip to content

Commit d710314

Browse files
authored
test(nextjs): Remove debug logs from e2e test (#18250)
1 parent e9ea037 commit d710314

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

dev-packages/e2e-tests/test-applications/nextjs-15/instrumentation-client.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@ import * as Sentry from '@sentry/nextjs';
22

33
Sentry.init({
44
environment: 'qa', // dynamic sampling bias to keep transactions
5-
dsn: 'https://username@domain/123',
5+
dsn: process.env.NEXT_PUBLIC_E2E_TEST_DSN,
66
tunnel: `http://localhost:3031/`, // proxy server
77
tracesSampleRate: 1.0,
88
sendDefaultPii: true,
9-
debug: true,
109
});
1110

1211
export const onRouterTransitionStart = Sentry.captureRouterTransitionStart;

0 commit comments

Comments
 (0)