@@ -2,10 +2,10 @@ import type { LRUMap } from '@sentry/utils';
2
2
import type { Debugger , InspectorNotification } from 'inspector' ;
3
3
4
4
import { NodeClient , defaultStackParser } from '../../src' ;
5
- import { createRateLimiter } from '../../src/integrations/localvariables /common' ;
6
- import type { FrameVariables } from '../../src/integrations/localvariables /common' ;
7
- import type { DebugSession } from '../../src/integrations/localvariables/localvariables -sync' ;
8
- import { LocalVariablesSync , createCallbackList } from '../../src/integrations/localvariables/localvariables -sync' ;
5
+ import { createRateLimiter } from '../../src/integrations/local-variables /common' ;
6
+ import type { FrameVariables } from '../../src/integrations/local-variables /common' ;
7
+ import type { DebugSession } from '../../src/integrations/local-variables/local-variables -sync' ;
8
+ import { LocalVariablesSync , createCallbackList } from '../../src/integrations/local-variables/local-variables -sync' ;
9
9
import { NODE_VERSION } from '../../src/nodeVersion' ;
10
10
import { getDefaultNodeClientOptions } from '../../test/helper/node-client-options' ;
11
11
@@ -309,7 +309,6 @@ describeIf(NODE_VERSION.major >= 18)('LocalVariables', () => {
309
309
const eventProcessor = eventProcessors . find ( processor => processor . id === 'LocalVariablesSync' ) ;
310
310
311
311
expect ( eventProcessor ) . toBeDefined ( ) ;
312
- expect ( localVariables [ '_shouldProcessEvent' ] ) . toBe ( false ) ;
313
312
} ) ;
314
313
315
314
it ( 'Should not initialize when inspector not loaded' , async ( ) => {
@@ -326,7 +325,6 @@ describeIf(NODE_VERSION.major >= 18)('LocalVariables', () => {
326
325
const eventProcessor = eventProcessors . find ( processor => processor . id === 'LocalVariablesSync' ) ;
327
326
328
327
expect ( eventProcessor ) . toBeDefined ( ) ;
329
- expect ( localVariables [ '_shouldProcessEvent' ] ) . toBe ( false ) ;
330
328
} ) ;
331
329
332
330
it ( 'Should cache identical uncaught exception events' , async ( ) => {
0 commit comments