mirror of
https://github.com/ccmjga/zhilu-admin
synced 2026-03-13 21:27:19 +08:00
9 lines
261 B
TypeScript
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!");
|
|
});
|