mirror of https://github.com/nodejs/node.git
20 lines
671 B
JavaScript
20 lines
671 B
JavaScript
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: !process.env.TEST_PARALLEL }, () => {
|
|
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);
|
|
});
|
|
});
|