Skip to content

Commit ba49510

Browse files
Check in code
1 parent 89d4c8b commit ba49510

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

tests/navigation/routing.spec.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ test.describe('Navigation & Routing', () => {
1616
test('should protect routes requiring authentication', async ({ page }) => {
1717
// Try to access protected route without authentication
1818
await page.goto('/employees');
19-
await page.waitForLoadState('networkidle');
19+
await page.waitForLoadState('networkidle');
20+
21+
TEST
2022

2123
// With optional auth, should load as Guest/Anonymous instead of forcing redirect
2224
const isOnLogin = page.url().includes('login') || page.url().includes('sts.skoruba.local');

tests/test-1.spec.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import { test, expect } from '@playwright/test';
2+
3+
test('test', async ({ page }) => {
4+
// Recording...
5+
});

0 commit comments

Comments
 (0)