Files
zhilu-admin/frontend/e2e/vue.spec.ts
Chuck1sn 3cd59337e7 init
2025-05-14 10:16:48 +08:00

9 lines
261 B
TypeScript

import { expect, test } from "@playwright/test";
// See here how to get started:
// https://playwright.dev/docs/intro
test("visits the app root url", async ({ page }) => {
await page.goto("/");
await expect(page.locator("h1")).toHaveText("You did it!");
});