diff options
Diffstat (limited to 'tests/specs/install/byonm_jsr_npm_dep/main.ts')
-rw-r--r-- | tests/specs/install/byonm_jsr_npm_dep/main.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/specs/install/byonm_jsr_npm_dep/main.ts b/tests/specs/install/byonm_jsr_npm_dep/main.ts new file mode 100644 index 000000000..a75e65bd8 --- /dev/null +++ b/tests/specs/install/byonm_jsr_npm_dep/main.ts @@ -0,0 +1,5 @@ +import { add } from "@denotest/npm-add"; +import { sum } from "@denotest/npm-add-0-5"; + +console.log(add(1, 2)); +console.log(sum(2, 2)); |