diff options
Diffstat (limited to 'cli/tests/testdata/npm/import_map/main.js')
-rw-r--r-- | cli/tests/testdata/npm/import_map/main.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cli/tests/testdata/npm/import_map/main.js b/cli/tests/testdata/npm/import_map/main.js index fe7ef549a..e354b7e92 100644 --- a/cli/tests/testdata/npm/import_map/main.js +++ b/cli/tests/testdata/npm/import_map/main.js @@ -1,7 +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()); |