Skip to content

Commit 864b7fb

Browse files
committed
lint
1 parent 4c286d2 commit 864b7fb

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

test/parallel/test-node-run.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -241,17 +241,17 @@ describe('node --run [command]', () => {
241241
it('returns error on non-directory path for --run-dir', async () => {
242242
const nonDirPath = fixtures.path('run-script/non-directory-file');
243243
fs.writeFileSync(nonDirPath, 'dummy content');
244-
244+
245245
const child = await common.spawnPromisified(
246246
process.execPath,
247247
[ '--run-dir', nonDirPath, '--run', 'pwd' ],
248248
{ cwd: fixtures.path('run-script') }
249249
);
250-
250+
251251
assert.match(child.stderr, /not a directory/);
252252
assert.strictEqual(child.stdout, '');
253253
assert.strictEqual(child.code, 1);
254-
254+
255255
fs.unlinkSync(nonDirPath);
256256
});
257257
});

0 commit comments

Comments
 (0)