1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-02-07 09:38:46 +00:00
_/vitest-playwright/vitest/sum.test.ts

7 lines
124 B
TypeScript
Raw Permalink Normal View History

2022-07-30 22:59:45 +09:00
import { test, expect } from "vitest";
import sum from "./sum";
test("1 + 1 = 2", () => {
expect(sum(1, 1)).toBe(2);
});