Spaces:
reon314
/
Runtime error

llm / e2e /setup /global-setup.local.ts
Marco Beretta
LibreChat upload repo
3b6afc0
raw
history blame
No virus
253 Bytes
import { FullConfig } from '@playwright/test';
import localUser from '../config.local';
import authenticate from './authenticate';
async function globalSetup(config: FullConfig) {
await authenticate(config, localUser);
}
export default globalSetup;