mirror of
https://github.com/denoland/deno.git
synced 2025-02-11 08:25:20 -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);
|
||
|
});
|