mirror of
https://github.com/regmicmahesh/ses-mailer.git
synced 2024-08-14 22:57:18 +00:00
7 lines
180 B
TypeScript
7 lines
180 B
TypeScript
|
import { assertEquals } from "https://deno.land/std@0.181.0/testing/asserts.ts";
|
||
|
import { add } from "./main.ts";
|
||
|
|
||
|
Deno.test(function addTest() {
|
||
|
assertEquals(add(2, 3), 5);
|
||
|
});
|