Skip to content

Commit 4901502

Browse files
Merge branch 'main' into NODE-6620/sockets
2 parents f003454 + 3216d33 commit 4901502

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

test/integration/node-specific/resource_tracking_script_builder.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,8 @@ export async function runScriptAndGetProcessInfo(
188188
.reduce((acc, curr) => ({ ...acc, ...curr }), {});
189189

190190
// delete temporary files
191-
// await unlink(scriptName);
192-
// await unlink(logFile);
191+
await unlink(scriptName);
192+
await unlink(logFile);
193193

194194
// assertions about exit status
195195
if (exitCode) {

test/tools/fixtures/process_resource_script.in.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ const { setTimeout } = require('timers');
2020
let originalReport;
2121
const logFile = scriptName + '.logs.txt';
2222
const sleep = util.promisify(setTimeout);
23-
2423
const run = func;
2524

2625
/**

0 commit comments

Comments
 (0)