summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/npm/import_map/main.js
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata/npm/import_map/main.js')
-rw-r--r--cli/tests/testdata/npm/import_map/main.js10
1 files changed, 0 insertions, 10 deletions
diff --git a/cli/tests/testdata/npm/import_map/main.js b/cli/tests/testdata/npm/import_map/main.js
deleted file mode 100644
index e354b7e92..000000000
--- a/cli/tests/testdata/npm/import_map/main.js
+++ /dev/null
@@ -1,10 +0,0 @@
-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());