330eb983d8
- apps/web/: prettier --write . 全量格式化(98个文件) - scripts/ci/auto_fix_formatting.py: black 格式化 纯格式改动,无业务逻辑变更
9 lines
247 B
TypeScript
Executable File
9 lines
247 B
TypeScript
Executable File
import { expect, test } from "@playwright/test"
|
|
|
|
test.describe("App route guard", () => {
|
|
test("redirects anonymous users to login", async ({ page }) => {
|
|
await page.goto("/app/dashboard")
|
|
await expect(page).toHaveURL(/\/login/)
|
|
})
|
|
})
|