mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-07-31 03:05:21 +00:00
- 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)
7 lines
267 B
TypeScript
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());
|
|
});
|