1import '../common/index.mjs';
2import { strictEqual } from 'assert';
3
4import secret0 from '../fixtures/experimental.json' with { type: 'json' };
5const secret1 = await import('../fixtures/experimental.json', {
6  with: { type: 'json' },
7});
8
9strictEqual(secret0.ofLife, 42);
10strictEqual(secret1.default.ofLife, 42);
11strictEqual(secret1.default, secret0);
12