mirror of
https://github.com/zebrajr/node.git
synced 2026-01-15 12:15:26 +00:00
PR-URL: https://github.com/nodejs/node/pull/61228 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: René <contact.9a5d6388@renegade334.me.uk>
56 lines
1.9 KiB
JavaScript
56 lines
1.9 KiB
JavaScript
import { spawnPromisified } from '../common/index.mjs';
|
|
import * as fixtures from '../common/fixtures.mjs';
|
|
import assert from 'node:assert';
|
|
import { execPath } from 'node:process';
|
|
import { describe, it } from 'node:test';
|
|
|
|
|
|
describe('ESM: module not found hint', { concurrency: !process.env.TEST_PARALLEL }, () => {
|
|
for (
|
|
const { input, expected, cwd = fixtures.fixturesDir }
|
|
of [
|
|
{
|
|
input: 'import "./print-error-message"',
|
|
// Did you mean to import "./print-error-message.js"?
|
|
expected: / "\.\/print-error-message\.js"\?/,
|
|
},
|
|
{
|
|
input: 'import "./es-modules/folder%25with percentage#/index.js"',
|
|
// Did you mean to import "./es-modules/folder%2525with%20percentage%23/index.js"?
|
|
expected: / "\.\/es-modules\/folder%2525with%20percentage%23\/index\.js"\?/,
|
|
},
|
|
{
|
|
input: 'import "../folder%25with percentage#/index.js"',
|
|
// Did you mean to import "../es-modules/folder%2525with%20percentage%23/index.js"?
|
|
expected: / "\.\.\/folder%2525with%20percentage%23\/index\.js"\?/,
|
|
cwd: fixtures.fileURL('es-modules/tla/'),
|
|
},
|
|
{
|
|
input: 'import obj from "some_module/obj"',
|
|
expected: / "some_module\/obj\.js"\?/,
|
|
},
|
|
{
|
|
input: 'import obj from "some_module/folder%25with percentage#/index.js"',
|
|
expected: / "some_module\/folder%2525with%20percentage%23\/index\.js"\?/,
|
|
},
|
|
{
|
|
input: 'import "@nodejsscope/pkg/index"',
|
|
expected: / "@nodejsscope\/pkg\/index\.js"\?/,
|
|
},
|
|
{
|
|
input: 'import obj from "lone_file.js"',
|
|
expected: /node_modules\/lone_file\.js"\?/,
|
|
},
|
|
]
|
|
) it('should cite a variant form', async () => {
|
|
const { code, stderr } = await spawnPromisified(execPath, [
|
|
'--input-type=module',
|
|
'--eval',
|
|
input,
|
|
], { cwd });
|
|
|
|
assert.match(stderr, expected);
|
|
assert.notStrictEqual(code, 0);
|
|
});
|
|
});
|