mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
a9dd03b1ec
PR-URL: https://github.com/nodejs/node/pull/39977 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Bradley Farias <bradley.meck@gmail.com> Reviewed-By: Guy Bedford <guybedford@gmail.com> Reviewed-By: Michael Dawson <midawson@redhat.com>
28 lines
816 B
JavaScript
28 lines
816 B
JavaScript
import { mustCall } from '../common/index.mjs';
|
|
import { Worker, isMainThread } from 'worker_threads';
|
|
import assert from 'assert';
|
|
import { fileURLToPath } from 'url';
|
|
import { requireFixture, importFixture } from '../fixtures/pkgexports.mjs';
|
|
|
|
if (isMainThread) {
|
|
const tests = [[], ['--no-addons']];
|
|
|
|
for (const execArgv of tests) {
|
|
new Worker(fileURLToPath(import.meta.url), { execArgv });
|
|
}
|
|
} else {
|
|
[requireFixture, importFixture].forEach((loadFixture) => {
|
|
loadFixture('pkgexports/no-addons').then(
|
|
mustCall((module) => {
|
|
const message = module.default;
|
|
|
|
if (process.execArgv.length === 0) {
|
|
assert.strictEqual(message, 'using native addons');
|
|
} else {
|
|
assert.strictEqual(message, 'not using native addons');
|
|
}
|
|
})
|
|
);
|
|
});
|
|
}
|