diff options
Diffstat (limited to 'tests/testdata/npm/import_map')
-rw-r--r-- | tests/testdata/npm/import_map/import_map.json | 6 | ||||
-rw-r--r-- | tests/testdata/npm/import_map/main.js | 10 | ||||
-rw-r--r-- | tests/testdata/npm/import_map/main.out | 10 |
3 files changed, 26 insertions, 0 deletions
diff --git a/tests/testdata/npm/import_map/import_map.json b/tests/testdata/npm/import_map/import_map.json new file mode 100644 index 000000000..1c3baacd1 --- /dev/null +++ b/tests/testdata/npm/import_map/import_map.json @@ -0,0 +1,6 @@ +{ + "imports": { + "chalk": "npm:chalk@5", + "@denotest/": "npm:/@denotest/dual-cjs-esm/" + } +} diff --git a/tests/testdata/npm/import_map/main.js b/tests/testdata/npm/import_map/main.js new file mode 100644 index 000000000..e354b7e92 --- /dev/null +++ b/tests/testdata/npm/import_map/main.js @@ -0,0 +1,10 @@ +import chalk from "chalk"; +import { getSubPathKind } from "@denotest/subpath/main.mjs"; + +console.log(chalk.green("chalk import map loads")); + +export function test(value) { + return chalk.red(value); +} + +console.log(getSubPathKind()); diff --git a/tests/testdata/npm/import_map/main.out b/tests/testdata/npm/import_map/main.out new file mode 100644 index 000000000..a3d1d9f3a --- /dev/null +++ b/tests/testdata/npm/import_map/main.out @@ -0,0 +1,10 @@ +[UNORDERED_START] +Download http://localhost:4545/npm/registry/chalk +Download http://localhost:4545/npm/registry/@denotest/dual-cjs-esm +[UNORDERED_END] +[UNORDERED_START] +Download http://localhost:4545/npm/registry/@denotest/dual-cjs-esm/1.0.0.tgz +Download http://localhost:4545/npm/registry/chalk/chalk-5.0.1.tgz +[UNORDERED_END] +chalk import map loads +esm |