aboutsummaryrefslogtreecommitdiffstats
path: root/src/index.test.ts
blob: 808401ed4a97e976de7c3bf43b53a6e2f1ecdd8c (plain) (blame)
1
2
3
4
5
6
7
import { describe, it, expect } from "vitest";

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