mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-06-25 08:56:10 +00:00
* test: restore Playwright smoke e2e * test: harden e2e smoke setup * test: sync e2e server bindings * test: normalize e2e auth urls
9 lines
252 B
TypeScript
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;
|