mirror of
https://github.com/Dokploy/examples
synced 2025-06-26 18:15:52 +00:00
7 lines
144 B
TypeScript
7 lines
144 B
TypeScript
import { assertEquals } from "@std/assert";
|
|
import { add } from "./index.ts";
|
|
|
|
Deno.test(function addTest() {
|
|
assertEquals(add(2, 3), 5);
|
|
});
|