PR-URL: https://github.com/nodejs/node/pull/61228 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: René <contact.9a5d6388@renegade334.me.uk>
18 lines
551 B
JavaScript
18 lines
551 B
JavaScript
'use strict';
|
|
|
|
// This tests that module.runMain can be monkey patched using --require.
|
|
// TODO(joyeecheung): This probably should be deprecated.
|
|
|
|
require('../common');
|
|
const fixtures = require('../common/fixtures');
|
|
const assert = require('assert');
|
|
const { spawnSync } = require('child_process');
|
|
|
|
const child = spawnSync(process.execPath, [
|
|
'--require',
|
|
fixtures.path('monkey-patch-run-main.js'),
|
|
fixtures.path('semicolon.js'),
|
|
]);
|
|
|
|
assert.strictEqual(child.status, 0);
|
|
assert(child.stdout.toString().includes('runMain is monkey patched!'));
|