watch/end2end/tests/example.spec.ts

10 lines
291 B
TypeScript
Raw Permalink Normal View History

2024-09-02 18:34:30 +00:00
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!");
});