From 1235f8472020b4ad5df7bf06f208417a8ee1640d Mon Sep 17 00:00:00 2001 From: Daeyeon Jeong Date: Sun, 23 Oct 2022 19:33:11 +0900 Subject: [PATCH] test: remove a snapshot blob from test-inspect-address-in-use.js This removes a snapshot blob generated by `test/parallel/test-inspect-address-in-use.js`. Signed-off-by: Daeyeon Jeong --- test/parallel/test-inspect-address-in-use.js | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/test/parallel/test-inspect-address-in-use.js b/test/parallel/test-inspect-address-in-use.js index a5b2d98537dfe4..eb076b21c9beaa 100644 --- a/test/parallel/test-inspect-address-in-use.js +++ b/test/parallel/test-inspect-address-in-use.js @@ -5,6 +5,7 @@ common.skipIfInspectorDisabled(); const { spawnSync } = require('child_process'); const { createServer } = require('http'); const assert = require('assert'); +const tmpdir = require('../common/tmpdir'); const fixtures = require('../common/fixtures'); const entry = fixtures.path('empty.js'); const { Worker } = require('worker_threads'); @@ -21,10 +22,10 @@ function testOnServerListen(fn) { server.listen(0, '127.0.0.1'); } -function testChildProcess(getArgs, exitCode) { +function testChildProcess(getArgs, exitCode, options) { testOnServerListen((server) => { const { port } = server.address(); - const child = spawnSync(process.execPath, getArgs(port)); + const child = spawnSync(process.execPath, getArgs(port), options); const stderr = child.stderr.toString().trim(); const stdout = child.stdout.toString().trim(); console.log('[STDERR]'); @@ -40,8 +41,12 @@ function testChildProcess(getArgs, exitCode) { }); } +tmpdir.refresh(); + testChildProcess( - (port) => [`--inspect=${port}`, '--build-snapshot', entry], 0); + (port) => [`--inspect=${port}`, '--build-snapshot', entry], 0, + { cwd: tmpdir.path }); + testChildProcess( (port) => [`--inspect=${port}`, entry], 0);