summaryrefslogtreecommitdiff
path: root/tests/specs/install/jsr_exports/main.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tests/specs/install/jsr_exports/main.ts')
-rw-r--r--tests/specs/install/jsr_exports/main.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/specs/install/jsr_exports/main.ts b/tests/specs/install/jsr_exports/main.ts
new file mode 100644
index 000000000..f7efdb0e9
--- /dev/null
+++ b/tests/specs/install/jsr_exports/main.ts
@@ -0,0 +1,7 @@
+import { add } from "@denotest/multiple-exports/add";
+import { subtract } from "@denotest/multiple-exports/subtract";
+import data from "@denotest/multiple-exports/data-json" with { type: "json" };
+
+console.log(add(1, 2));
+console.log(subtract(1, 2));
+console.log(data);