add sample test

This commit is contained in:
2024-12-30 15:06:53 -08:00
parent 12ac84feae
commit 00c3a61095

7
test/sum.test.ts Normal file
View File

@@ -0,0 +1,7 @@
import { describe, expect, test } from "@jest/globals";
describe("sum", () => {
test("adds 1 + 2 to equal 3", () => {
expect(1 + 2).toBe(3);
});
});