mirror of
https://github.com/kou029w/_.git
synced 2025-01-31 06:18:07 +00:00
10 lines
173 B
TypeScript
10 lines
173 B
TypeScript
|
import { assertStrictEquals } from "testing/asserts.ts";
|
||
|
import { add } from "./add.ts";
|
||
|
|
||
|
Deno.test({
|
||
|
name: "add",
|
||
|
fn() {
|
||
|
assertStrictEquals(add(1, 2), 3);
|
||
|
},
|
||
|
});
|