summaryrefslogtreecommitdiff
path: root/tests/specs/jsr/worker/main.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tests/specs/jsr/worker/main.ts')
-rw-r--r--tests/specs/jsr/worker/main.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/specs/jsr/worker/main.ts b/tests/specs/jsr/worker/main.ts
new file mode 100644
index 000000000..ccab029e6
--- /dev/null
+++ b/tests/specs/jsr/worker/main.ts
@@ -0,0 +1,5 @@
+import { addAsync } from "jsr:@denotest/worker";
+
+addAsync(1, 2).then((result) => {
+ console.log(result);
+});