mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 21:19:50 +01: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>
11 lines
332 B
JavaScript
11 lines
332 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const fixtures = require('../common/fixtures');
|
|
const worker = fixtures.path('worker-preload.js');
|
|
const { exec } = require('child_process');
|
|
const kNodeBinary = process.argv[0];
|
|
|
|
|
|
exec(...common.escapePOSIXShell`"${kNodeBinary}" -r "${worker}" -pe "1+1"`, common.mustSucceed());
|