Back

Version 7

12/19/2023
import * as jest from "npm:@jest/globals";

jest.describe("sum module", () => {
jest.test("adds 1 + 2 to equal 3", () => {
jest.expect(1 + 2).toBe(3);
});
});

import { run } from "npm:jest-cli";
console.log(run);
Updated: January 11, 2024