summaryrefslogtreecommitdiff
path: root/tests/specs/npm/workspace_sub_deno_json/member/main.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tests/specs/npm/workspace_sub_deno_json/member/main.ts')
-rw-r--r--tests/specs/npm/workspace_sub_deno_json/member/main.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/specs/npm/workspace_sub_deno_json/member/main.ts b/tests/specs/npm/workspace_sub_deno_json/member/main.ts
new file mode 100644
index 000000000..ca686daa0
--- /dev/null
+++ b/tests/specs/npm/workspace_sub_deno_json/member/main.ts
@@ -0,0 +1,4 @@
+import chalk from "npm:chalk@5";
+
+const stat = Deno.statSync(new URL("../node_modules", import.meta.url));
+console.log(chalk.green(stat.isDirectory));