leptos/examples/tailwind/end2end/tests/example.spec.ts

8 lines
243 B
TypeScript

import { test, expect } from "@playwright/test";
test("should see the welcome message", async ({ page }) => {
await page.goto("http://localhost:3000/");
await expect(page.locator("h2")).toHaveText("Welcome to Leptos with Tailwind");
});