mirror of
https://github.com/kou029w/_.git
synced 2025-01-31 06:18:07 +00:00
6 lines
134 B
TypeScript
6 lines
134 B
TypeScript
import { test, expect } from "@playwright/test";
|
|
import sum from "./sum";
|
|
|
|
test("1 + 1 = 2", () => {
|
|
expect(sum(1, 1)).toBe(2);
|
|
});
|