mirror of
https://github.com/brendan-ch/project-inter-server.git
synced 2026-04-17 07:50:31 +00:00
8 lines
158 B
TypeScript
8 lines
158 B
TypeScript
import { describe, expect, test } from "@jest/globals";
|
|
|
|
describe("sum", () => {
|
|
test("adds 1 + 2 to equal 3", () => {
|
|
expect(1 + 2).toBe(4);
|
|
});
|
|
});
|