File tree Expand file tree Collapse file tree 5 files changed +4
-13
lines changed
dev-packages/node-integration-tests/suites
public-api/LocalVariables Expand file tree Collapse file tree 5 files changed +4
-13
lines changed Original file line number Diff line number Diff line change @@ -10,8 +10,7 @@ Sentry.init({
1010 transport : loggingTransport ,
1111} ) ;
1212
13- // eslint-disable-next-line no-unused-vars
14- const _child = fork ( path . join ( __dirname , 'child.mjs' ) ) ;
13+ fork ( path . join ( __dirname , 'child.mjs' ) ) ;
1514
1615setTimeout ( ( ) => {
1716 throw new Error ( 'Exiting main process' ) ;
Original file line number Diff line number Diff line change @@ -12,8 +12,7 @@ Sentry.init({
1212 transport : loggingTransport ,
1313} ) ;
1414
15- // eslint-disable-next-line no-unused-vars
16- const _child = fork ( path . join ( __dirname , 'child.mjs' ) ) ;
15+ fork ( path . join ( __dirname , 'child.mjs' ) ) ;
1716
1817setTimeout ( ( ) => {
1918 throw new Error ( 'Exiting main process' ) ;
Original file line number Diff line number Diff line change @@ -10,8 +10,7 @@ Sentry.init({
1010 transport : loggingTransport ,
1111} ) ;
1212
13- // eslint-disable-next-line no-unused-vars
14- const _worker = new Worker ( path . join ( __dirname , 'child.js' ) ) ;
13+ new Worker ( path . join ( __dirname , 'child.js' ) ) ;
1514
1615setTimeout ( ( ) => {
1716 process . exit ( ) ;
Original file line number Diff line number Diff line change @@ -12,8 +12,7 @@ Sentry.init({
1212 transport : loggingTransport ,
1313} ) ;
1414
15- // eslint-disable-next-line no-unused-vars
16- const _worker = new Worker ( path . join ( __dirname , 'child.mjs' ) ) ;
15+ new Worker ( path . join ( __dirname , 'child.mjs' ) ) ;
1716
1817setTimeout ( ( ) => {
1918 process . exit ( ) ;
Original file line number Diff line number Diff line change 11import { register } from 'node:module' ;
22
3- // eslint-disable-next-line no-unused-vars
4- const hookScript = Buffer . from ( `
5-
6- ` ) ;
7-
83register (
94 new URL ( `data:application/javascript,
105export async function resolve(specifier, context, nextResolve) {
You can’t perform that action at this time.
0 commit comments