feat(web): add simple webpage

This commit is contained in:
2025-11-26 01:11:19 +02:00
parent 46a47102b9
commit 2254ecaf7c
21 changed files with 1180 additions and 13 deletions

View File

@@ -0,0 +1,9 @@
import { test, expect } from "@playwright/test";
test("homepage has title and heading text", async ({ page }) => {
await page.goto("http://localhost:3000/");
await expect(page).toHaveTitle("Welcome to Leptos");
await expect(page.locator("h1")).toHaveText("Welcome to Leptos!");
});