Skip to content

Commit d4713f8

Browse files
committed
Lint
1 parent eeb2087 commit d4713f8

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

dev-packages/node-integration-tests/suites/tunnel/child.mjs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ Sentry.init({
99
autoSessionTracking: false,
1010
transportOptions: {
1111
// I'm sure express.raw() can be made to work without this, but probably not worth trying to figure out how
12-
headers:{
13-
"Content-Type": "application/octet-stream",
14-
}
15-
}
12+
headers: {
13+
'Content-Type': 'application/octet-stream',
14+
},
15+
},
1616
});
1717

1818
throw new Error('Test error in child process');

dev-packages/node-integration-tests/suites/tunnel/server.mjs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,10 @@ app.post('/tunnel', express.raw(), async (req, res) => {
2323
});
2424

2525
startExpressServerAndSendPortToRunner(app, undefined, port => {
26-
const child = fork(join(__dirname, 'child.mjs'), { stdio: 'inherit', env: { ...process.env, PORT: port.toString() } });
26+
const child = fork(join(__dirname, 'child.mjs'), {
27+
stdio: 'inherit',
28+
env: { ...process.env, PORT: port.toString() },
29+
});
2730
child.on('exit', code => {
2831
console.log('Child process exited with code', code);
2932
process.exit(code);

0 commit comments

Comments
 (0)