diff options
Diffstat (limited to 'tests/specs/workspaces/lockfile/integration.test.ts')
-rw-r--r-- | tests/specs/workspaces/lockfile/integration.test.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/specs/workspaces/lockfile/integration.test.ts b/tests/specs/workspaces/lockfile/integration.test.ts new file mode 100644 index 000000000..91e921b33 --- /dev/null +++ b/tests/specs/workspaces/lockfile/integration.test.ts @@ -0,0 +1,7 @@ +import { add } from "@scope/pkg"; + +Deno.test("should add", () => { + if (add(1, 2) !== 3) { + throw new Error("failed"); + } +}); |