mirror of
https://github.com/denoland/deno.git
synced 2025-02-08 07:16:56 -05:00
8 lines
131 B
TypeScript
8 lines
131 B
TypeScript
![]() |
import { add } from "@scope/pkg";
|
||
|
|
||
|
Deno.test("should add", () => {
|
||
|
if (add(1, 2) !== 3) {
|
||
|
throw new Error("failed");
|
||
|
}
|
||
|
});
|