mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
796f3d0af4
PR-URL: https://github.com/nodejs/node/pull/29866 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Myles Borins <myles.borins@gmail.com>
25 lines
469 B
JavaScript
25 lines
469 B
JavaScript
import '../common/index.mjs';
|
|
import assert from 'assert';
|
|
|
|
async function main() {
|
|
let mod;
|
|
try {
|
|
mod = await import('../fixtures/es-modules/pjson-main');
|
|
} catch (e) {
|
|
assert.strictEqual(e.code, 'ERR_MODULE_NOT_FOUND');
|
|
}
|
|
|
|
assert.strictEqual(mod, undefined);
|
|
|
|
try {
|
|
mod = await import('../fixtures/es-modules/pjson-main/main.mjs');
|
|
} catch (e) {
|
|
console.log(e);
|
|
assert.fail();
|
|
}
|
|
|
|
assert.strictEqual(mod.main, 'main');
|
|
}
|
|
|
|
main();
|