node/test/parallel/test-preload-self-referential.js
Antoine du Hamel 99e0d0d218
test: add escapePOSIXShell util
PR-URL: https://github.com/nodejs/node/pull/55125
Reviewed-By: Jacob Smith <jacob@frende.me>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: LiviaMedeiros <livia@cirno.name>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
2024-09-29 20:44:52 +00:00

21 lines
633 B
JavaScript

'use strict';
const common = require('../common');
const fixtures = require('../common/fixtures');
const assert = require('assert');
const { exec } = require('child_process');
const nodeBinary = process.argv[0];
if (!common.isMainThread)
common.skip('process.chdir is not available in Workers');
const selfRefModule = fixtures.path('self_ref_module');
const fixtureA = fixtures.path('printA.js');
const [cmd, opts] = common.escapePOSIXShell`"${nodeBinary}" -r self_ref "${fixtureA}"`;
exec(cmd, { ...opts, cwd: selfRefModule },
common.mustSucceed((stdout, stderr) => {
assert.strictEqual(stdout, 'A\n');
}));