1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-31 06:18:07 +00:00
_/vitest-playwright/playwright/sum.test.ts

7 lines
134 B
TypeScript
Raw Permalink Normal View History

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