node/test/es-module/test-esm-default-type.mjs
Antoine du Hamel 5f77aebdfb
test: ensure assertions are reachable in test/es-module
PR-URL: https://github.com/nodejs/node/pull/60501
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
2025-11-07 09:24:01 +01:00

7 lines
190 B
JavaScript

import '../common/index.mjs';
import assert from 'assert';
import asdf from
'../fixtures/es-modules/package-type-module/nested-default-type/module.js';
assert.strictEqual(asdf, 'asdf');