mirror of
https://github.com/nodejs/node.git
synced 2025-12-28 07:50:41 +00:00
PR-URL: https://github.com/nodejs/node/pull/53619 Backport-PR-URL: https://github.com/nodejs/node/pull/56927 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Refs: https://github.com/nodejs/node/issues/52697
15 lines
358 B
JavaScript
15 lines
358 B
JavaScript
// Flags: --experimental-require-module
|
|
'use strict';
|
|
|
|
const common = require('../common');
|
|
|
|
{
|
|
const mod = require('../fixtures/es-modules/loose.js');
|
|
common.expectRequiredModule(mod, { default: 'module' });
|
|
}
|
|
|
|
{
|
|
const mod = require('../fixtures/es-modules/package-without-type/noext-esm');
|
|
common.expectRequiredModule(mod, { default: 'module' });
|
|
}
|