mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 18:54:30 +00:00
8 lines
190 B
TypeScript
8 lines
190 B
TypeScript
import dotenv from "dotenv";
|
|
|
|
export default async function globalSetup() {
|
|
dotenv.config({
|
|
//path should be relative to playwright.config.ts
|
|
path: "./../../.env",
|
|
});
|
|
}
|