mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
604ce4cc66
PR-URL: https://github.com/nodejs/node/pull/53619 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
29 lines
1.1 KiB
JavaScript
29 lines
1.1 KiB
JavaScript
'use strict';
|
|
|
|
const { spawnPromisified } = require('../common');
|
|
const fixtures = require('../common/fixtures.js');
|
|
const assert = require('node:assert');
|
|
const { execPath } = require('node:process');
|
|
const { describe, it } = require('node:test');
|
|
|
|
|
|
describe('ESM: importing CJS', { concurrency: !process.env.TEST_PARALLEL }, () => {
|
|
it('should support valid CJS exports', async () => {
|
|
const validEntry = fixtures.path('/es-modules/cjs-exports.mjs');
|
|
const { code, signal, stdout } = await spawnPromisified(execPath, [validEntry]);
|
|
|
|
assert.strictEqual(code, 0);
|
|
assert.strictEqual(signal, null);
|
|
assert.strictEqual(stdout, 'ok\n');
|
|
});
|
|
|
|
it('should error on invalid CJS exports', async () => {
|
|
const invalidEntry = fixtures.path('/es-modules/cjs-exports-invalid.mjs');
|
|
const { code, signal, stderr } = await spawnPromisified(execPath, [invalidEntry]);
|
|
|
|
assert.match(stderr, /SyntaxError: The requested module '\.\/invalid-cjs\.js' does not provide an export named 'default'/);
|
|
assert.strictEqual(code, 1);
|
|
assert.strictEqual(signal, null);
|
|
});
|
|
});
|