Files
xiaoxia-saas/apps/web/e2e/auth.spec.ts
T
CI Bot 330eb983d8 style: 引入Prettier后首次全量格式化(前端 + Python脚本)
- apps/web/: prettier --write . 全量格式化(98个文件)
- scripts/ci/auto_fix_formatting.py: black 格式化
纯格式改动,无业务逻辑变更
2026-07-18 17:46:20 +08:00

11 lines
376 B
TypeScript

import { expect, test } from "@playwright/test"
test.describe("Authentication page", () => {
test("renders login form", async ({ page }) => {
await page.goto("/login")
await expect(page.getByLabel("邮箱")).toBeVisible()
await expect(page.getByLabel("密码")).toBeVisible()
await expect(page.getByRole("button", { name: "登录" })).toBeVisible()
})
})