Skip to content

Commit 4ee2f03

Browse files
authored
test(node): Ensure local variables are included for caught exceptions by default (#9266)
1 parent e4a1440 commit 4ee2f03

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

packages/node-integration-tests/suites/public-api/LocalVariables/local-variables-caught.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ const Sentry = require('@sentry/node');
44
Sentry.init({
55
dsn: 'https://[email protected]/1337',
66
includeLocalVariables: true,
7-
integrations: [new Sentry.Integrations.LocalVariables({ captureAllExceptions: true })],
87
beforeSend: event => {
98
// eslint-disable-next-line no-console
109
console.log(JSON.stringify(event));

packages/node-integration-tests/suites/public-api/LocalVariables/local-variables-caught.mjs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import * as Sentry from '@sentry/node';
44
Sentry.init({
55
dsn: 'https://[email protected]/1337',
66
includeLocalVariables: true,
7-
integrations: [new Sentry.Integrations.LocalVariables({ captureAllExceptions: true })],
87
beforeSend: event => {
98
// eslint-disable-next-line no-console
109
console.log(JSON.stringify(event));

0 commit comments

Comments
 (0)