Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'test/es-module/test-esm-local-deprecations.mjs')
-rw-r--r--test/es-module/test-esm-local-deprecations.mjs37
1 files changed, 0 insertions, 37 deletions
diff --git a/test/es-module/test-esm-local-deprecations.mjs b/test/es-module/test-esm-local-deprecations.mjs
deleted file mode 100644
index a9030b40912..00000000000
--- a/test/es-module/test-esm-local-deprecations.mjs
+++ /dev/null
@@ -1,37 +0,0 @@
-import '../common/index.mjs';
-import assert from 'assert';
-import fixtures from '../common/fixtures.js';
-import { pathToFileURL } from 'url';
-
-const selfDeprecatedFolders =
- fixtures.path('/es-modules/self-deprecated-folders/main.js');
-
-const deprecatedFoldersIgnore =
- fixtures.path('/es-modules/deprecated-folders-ignore/main.js');
-
-const deprecatedTrailingSlashPattern =
- fixtures.path('/es-modules/pattern-trailing-slash.mjs');
-
-const expectedWarnings = [
- '"./" in the "exports" field',
- '"#self/" in the "imports" field',
- '"./folder/" in the "exports" field',
- '"./trailing-pattern-slash/" in the "exports" field',
-];
-
-process.addListener('warning', (warning) => {
- if (warning.stack.includes(expectedWarnings[0])) {
- expectedWarnings.shift();
- }
-});
-
-process.on('exit', () => {
- assert.deepStrictEqual(expectedWarnings, []);
-});
-
-(async () => {
- await import(pathToFileURL(selfDeprecatedFolders));
- await import(pathToFileURL(deprecatedFoldersIgnore));
- await import(pathToFileURL(deprecatedTrailingSlashPattern));
-})()
-.catch((err) => console.error(err));