import { spawnPromisified } from '../common/index.mjs'; import { path } from '../common/fixtures.mjs'; import { strictEqual } from 'node:assert'; import { execPath } from 'node:process'; import { describe, it } from 'node:test'; describe('ESM: experiemental warning for import.meta.resolve', { concurrency: true }, () => { it('should not warn when caught', async () => { const { code, signal, stderr } = await spawnPromisified(execPath, [ '--experimental-import-meta-resolve', path('es-modules/import-resolve-exports.mjs'), ]); strictEqual(stderr, ''); strictEqual(code, 0); strictEqual(signal, null); }); });