Initial commit

This commit is contained in:
Thomas Gideon 2024-09-02 14:34:30 -04:00
commit 232a9877e6
20 changed files with 4173 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!");
});