mirror of
https://github.com/denoland/deno.git
synced 2024-12-12 02:27:46 -05:00
7 lines
151 B
TypeScript
7 lines
151 B
TypeScript
|
import { subtract } from "./mod.ts";
|
||
|
import { assertEquals } from "@std/assert";
|
||
|
|
||
|
Deno.test("subtract", () => {
|
||
|
assertEquals(subtract(4, 2), 2);
|
||
|
});
|