deno testing code example
Example: deno test
123456import { assertEquals } from "https://deno.land/std/testing/asserts.ts";
Deno.test("hello world", () => { const x = 1 + 2; assertEquals(x, 3);});
123456import { assertEquals } from "https://deno.land/std/testing/asserts.ts";
Deno.test("hello world", () => { const x = 1 + 2; assertEquals(x, 3);});