LibreChat / e2e /setup /global-setup.local.ts
N.Achyuth Reddy
Upload 683 files
9705b6c
raw
history blame
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;