Skip to content

Commit 410cecf

Browse files
committed
cleanup unneeded comments/vars
1 parent 3d9ce14 commit 410cecf

File tree

5 files changed

+4
-13
lines changed

5 files changed

+4
-13
lines changed

dev-packages/node-integration-tests/suites/child-process/fork.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff 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

1615
setTimeout(() => {
1716
throw new Error('Exiting main process');

dev-packages/node-integration-tests/suites/child-process/fork.mjs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff 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

1817
setTimeout(() => {
1918
throw new Error('Exiting main process');

dev-packages/node-integration-tests/suites/child-process/worker.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff 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

1615
setTimeout(() => {
1716
process.exit();

dev-packages/node-integration-tests/suites/child-process/worker.mjs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff 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

1817
setTimeout(() => {
1918
process.exit();

dev-packages/node-integration-tests/suites/public-api/LocalVariables/deny-inspector.mjs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
import { register } from 'node:module';
22

3-
// eslint-disable-next-line no-unused-vars
4-
const hookScript = Buffer.from(`
5-
6-
`);
7-
83
register(
94
new URL(`data:application/javascript,
105
export async function resolve(specifier, context, nextResolve) {

0 commit comments

Comments
 (0)