Files
PhotonVision/photon-client/tests/global-setup.ts

8 lines
259 B
TypeScript
Raw Normal View History

2025-12-04 22:25:48 -06:00
async function globalSetup() {
// You can perform global setup tasks here, such as starting a server or setting environment variables
const path = await import("path");
process.env.TESTS_DIR = path.resolve(process.cwd());
}
export default globalSetup;