• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
8strictEqual(secret0.ofLife, 42);
9strictEqual(secret1.default.ofLife, 42);
10strictEqual(secret1.default, secret0);
11