mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 08:50:15 +01:00
10 lines
251 B
TypeScript
10 lines
251 B
TypeScript
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;
|