diff options
Diffstat (limited to 'tests/specs/compile/patch/main')
-rw-r--r-- | tests/specs/compile/patch/main/deno.json | 5 | ||||
-rw-r--r-- | tests/specs/compile/patch/main/main.ts | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/tests/specs/compile/patch/main/deno.json b/tests/specs/compile/patch/main/deno.json new file mode 100644 index 000000000..5d341f168 --- /dev/null +++ b/tests/specs/compile/patch/main/deno.json @@ -0,0 +1,5 @@ +{ + "patch": [ + "../add" + ] +} diff --git a/tests/specs/compile/patch/main/main.ts b/tests/specs/compile/patch/main/main.ts new file mode 100644 index 000000000..8fb44d2ed --- /dev/null +++ b/tests/specs/compile/patch/main/main.ts @@ -0,0 +1,3 @@ +import { add } from "jsr:@denotest/add"; + +console.log(add(1, 2)); |