mirror of
https://github.com/LukeHagar/stats-action.git
synced 2025-12-06 04:21:26 +00:00
9 lines
200 B
TypeScript
9 lines
200 B
TypeScript
import { describe, expect, it } from "vitest";
|
|
import { sum } from "../src/sum";
|
|
|
|
describe("add", () => {
|
|
it("should sum of 2 and 3 equals to 5", () => {
|
|
expect(sum(2, 3)).toEqual(5);
|
|
});
|
|
});
|