Public
Back
Version 12
12/19/2023
import { expect, prettify, Test } from "https://raw.githubusercontent.com/ValeriaVG/tiny-jest/v1.2.1/dist/mod.ts";
const { it, run, title } = new Test("basic");
it("2+2=4", () => {
expect(2 + 2).toBe(4);
});
it("fails", async () => {
expect(1 + 2).toBe(4);
});
run().then(prettify);
Updated: January 11, 2024