Duplicated from LibreChat/LibreChat
3b6afc0
1
2
3
4
5
6
7
8
9
10
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;