mirror of
https://github.com/kou029w/_.git
synced 2025-02-07 09:38:46 +00:00
7 lines
124 B
TypeScript
7 lines
124 B
TypeScript
|
import { test, expect } from "vitest";
|
||
|
import sum from "./sum";
|
||
|
|
||
|
test("1 + 1 = 2", () => {
|
||
|
expect(sum(1, 1)).toBe(2);
|
||
|
});
|