2020-05-04 09:50:42 +00:00
|
|
|
'use strict';
|
|
|
|
|
2022-07-29 08:42:55 +00:00
|
|
|
const { checkoutEOL, 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');
|
2020-05-04 09:50:42 +00:00
|
|
|
|
|
|
|
|
2022-07-29 08:42:55 +00:00
|
|
|
describe('ESM: Package.json', { concurrency: true }, () => {
|
|
|
|
it('should throw on invalid pson', async () => {
|
|
|
|
const entry = fixtures.path('/es-modules/import-invalid-pjson.mjs');
|
|
|
|
const invalidJson = fixtures.path('/node_modules/invalid-pjson/package.json');
|
|
|
|
|
|
|
|
const { code, signal, stderr } = await spawnPromisified(execPath, [entry]);
|
|
|
|
|
|
|
|
assert.ok(
|
|
|
|
stderr.includes(
|
|
|
|
`[ERR_INVALID_PACKAGE_CONFIG]: Invalid package config ${invalidJson} ` +
|
|
|
|
`while importing "invalid-pjson" from ${entry}. ` +
|
2022-06-18 07:02:31 +00:00
|
|
|
"Expected ':' after property name in JSON at position " +
|
|
|
|
`${12 + checkoutEOL.length * 2}`
|
2022-07-29 08:42:55 +00:00
|
|
|
),
|
|
|
|
stderr
|
|
|
|
);
|
|
|
|
assert.strictEqual(code, 1);
|
|
|
|
assert.strictEqual(signal, null);
|
|
|
|
});
|
2020-05-04 09:50:42 +00:00
|
|
|
});
|