mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
99e0d0d218
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>
21 lines
633 B
JavaScript
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');
|
|
}));
|