mirror of
https://github.com/denoland/deno.git
synced 2024-11-29 16:30:56 -05:00
d2b5254c33
Re-attempt at #21284. I was more thorough this time. --------- Signed-off-by: Asher Gomez <ashersaupingomez@gmail.com>
6 lines
194 B
TypeScript
6 lines
194 B
TypeScript
import { addNumbers } from "./foo.ts";
|
|
import { assertEquals } from "../../../../../test_util/std/assert/mod.ts";
|
|
|
|
Deno.test("addNumbers works", () => {
|
|
assertEquals(addNumbers(1, 2), 3);
|
|
});
|