1 2 3 4 5 6 7 8 9
import { strictEqual } from "assert"; Deno.test("Correct assertion", () => { strictEqual(20, 20); }); Deno.test("Failed assertion", () => { strictEqual(10, 20); });