node/test/es-module/test-esm-import-attributes-3.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

11 lines
363 B
JavaScript

import '../common/index.mjs';
import assert from 'assert';
import secret0 from '../fixtures/experimental.json' with { type: 'json' };
const secret1 = await import('../fixtures/experimental.json',
{ with: { type: 'json' } });
assert.strictEqual(secret0.ofLife, 42);
assert.strictEqual(secret1.default.ofLife, 42);
assert.strictEqual(secret1.default, secret0);