Files
Beacon/tests/e2e/auth.spec.ts
T
Uklonil 3aeaed0af2
CI / quality (push) Waiting to run
UPD: initial architecture
2026-07-27 10:23:50 +02:00

7 lines
289 B
TypeScript

import { expect, test } from "@playwright/test";
test("anonymous workspace access redirects to login", async ({ page }) => {
await page.goto("/w/el-yermo");
await expect(page).toHaveURL(/\/login/);
await expect(page.getByRole("heading", { name: "Welcome back" })).toBeVisible();
});