chore: Test setup in partner-web * Add playwright * Add vitest setup Approved-by: Linus Flood
8 lines
176 B
TypeScript
8 lines
176 B
TypeScript
import { expect, test } from "@playwright/test"
|
|
|
|
test("has text", async ({ page }) => {
|
|
await page.goto("/")
|
|
|
|
await expect(page.getByText(/hello world/i)).toBeVisible()
|
|
})
|