refactor: make discrete backend and frontend

This commit is contained in:
2025-01-27 17:10:34 +02:00
parent 493a636a7d
commit 74b9b00de1
70 changed files with 1309 additions and 1016 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!");
});