LibreChat/e2e/setup/global-setup.ts
Danny Avila b993d9fb28
🛟 test: Restore Playwright Smoke E2E (#13020)
* test: restore Playwright smoke e2e

* test: harden e2e smoke setup

* test: sync e2e server bindings

* test: normalize e2e auth urls
2026-05-14 09:49:26 -04:00

9 lines
252 B
TypeScript

import { FullConfig } from '@playwright/test';
import authenticate from './authenticate';
import { getE2EUser } from './user';
async function globalSetup(config: FullConfig) {
await authenticate(config, getE2EUser());
}
export default globalSetup;