Files
Kmake/test/es-module/test-esm-import-attributes-2.mjs

12 lines
352 B
JavaScript
Raw Normal View History

2026-05-26 23:36:42 -07:00
import '../common/index.mjs';
import { strictEqual } from 'assert';
import secret0 from '../fixtures/experimental.json' with { type: 'json' };
const secret1 = await import('../fixtures/experimental.json', {
with: { type: 'json' },
});
strictEqual(secret0.ofLife, 42);
strictEqual(secret1.default.ofLife, 42);
strictEqual(secret1.default, secret0);