Research-Stack/4-Infrastructure/k3s-flake/tests/test-simple.spec.ts
Brandon Schneider 3fdc7de196 feat(jellyfin): SSO-Auth plugin active, branding configured
- SSO-Auth plugin Active with Authentik OIDC provider
- SSO redirect endpoint verified (302 -> auth.researchstack.info)
- Login disclaimer and custom CSS for SSO button
- All 22+ services operational with HTTPS

Build: 3313 jobs, 0 errors (lake build Compiler)
2026-05-31 14:48:21 -05:00

7 lines
267 B
TypeScript

import { test } from '@playwright/test';
test('simple', async ({ page }) => {
test.setTimeout(30000);
console.log('Going to page...');
await page.goto('http://100.88.57.96:30091/web/', { timeout: 15000 });
console.log('Page loaded:', await page.title());
});