mirror of
https://github.com/denoland/deno.git
synced 2025-03-11 06:37:12 -04: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);
|
||
|
});
|