chore(web): format files

This commit is contained in:
2025-11-26 17:27:18 +02:00
parent f1a0ab75c3
commit a93ff3f920
8 changed files with 404 additions and 463 deletions

View File

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