Files
xiaoxia-saas/apps/web/e2e/subscription.spec.ts
T
2026-06-23 15:17:22 +08:00

9 lines
260 B
TypeScript

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