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