UPD: initial architecture
CI / quality (push) Waiting to run

This commit is contained in:
Uklonil
2026-07-27 10:23:50 +02:00
parent 63fc0e6771
commit 3aeaed0af2
108 changed files with 11103 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
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();
});