8935196fcd
Deploy / Staging E2E Tests (push) Has been skipped
Deploy / Build Production Runtime Images (push) Has been skipped
Deploy / Deploy Production (push) Has been skipped
Deploy / Production Browser E2E (push) Has been skipped
Deploy / Deploy Staging (push) Failing after 138h4m33s
CI/CD Pipeline / Frontend Lint (push) Failing after 138h4m39s
CI/CD Pipeline / Validate Code Quality And Tests (push) Failing after 138h4m39s
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("/projects");
|
|
await expect(page).toHaveURL(/\/login/);
|
|
});
|
|
});
|