mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-07-30 18:56:16 +00:00
- Jellyfin setup wizard completed, admin account created (admin/jellyfin-admin) - SSO-Auth plugin v4.0.0.3 downloaded and placed in plugins directory - Authentik OIDC provider for Jellyfin updated with correct redirect URI - All services verified running Build: 3313 jobs, 0 errors (lake build Compiler)
19 lines
699 B
TypeScript
19 lines
699 B
TypeScript
import { test, expect } from '@playwright/test';
|
|
|
|
test('Check Jellyfin wizard', async ({ browser }) => {
|
|
const context = await browser.newContext({ storageState: 'auth-state.json' });
|
|
const page = await context.newPage();
|
|
|
|
console.log('Navigating to Jellyfin wizard...');
|
|
await page.goto('https://media.researchstack.info/web/#/wizardstart.html');
|
|
await page.waitForLoadState('networkidle');
|
|
await page.waitForTimeout(6000);
|
|
|
|
console.log('URL:', page.url());
|
|
await page.screenshot({ path: 'jellyfin-wizard.png' });
|
|
|
|
const textContent = await page.evaluate(() => document.body.innerText);
|
|
console.log('Jellyfin text:', textContent.slice(0, 1000));
|
|
|
|
await context.close();
|
|
});
|