Files
xiaoxia-saas/apps/web/e2e/workspace.spec.ts
T
Xiaoxia AI dc89f66bfd
Deploy / Build Production Runtime Images (push) Has been skipped
Deploy / Deploy Production (push) Has been skipped
CI/CD Pipeline / Validate Code Quality And Tests (push) Has been cancelled
Deploy / Deploy Staging (push) Has been cancelled
test(e2e): add browser upload gate
2026-06-23 15:17:22 +08:00

9 lines
255 B
TypeScript

import { expect, test } from '@playwright/test';
test.describe('Workspace route guard', () => {
test('redirects anonymous users to login', async ({ page }) => {
await page.goto('/workspaces');
await expect(page).toHaveURL(/\/login/);
});
});