mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
2551a21553
PR-URL: https://github.com/nodejs/node/pull/30986 Reviewed-By: Guy Bedford <guybedford@gmail.com> Reviewed-By: Bradley Farias <bradley.meck@gmail.com>
13 lines
400 B
JavaScript
13 lines
400 B
JavaScript
// Flags: --experimental-loader ./test/fixtures/es-module-loaders/loader-get-format.mjs
|
|
import { mustCall, mustNotCall } from '../common/index.mjs';
|
|
import assert from 'assert';
|
|
|
|
import('../fixtures/es-modules/package-type-module/extension.unknown')
|
|
.then(
|
|
mustCall((ns) => {
|
|
assert.strictEqual(ns.default, 'unknown');
|
|
}),
|
|
// Do not use .catch; want exclusive or
|
|
mustNotCall(() => {})
|
|
);
|