chore: Initial commit

This commit is contained in:
Thomas Gideon 2024-12-21 14:34:59 -05:00
commit 7523591813
17 changed files with 860 additions and 0 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!");
});