hyp / apps /server /tests /setup.ts
Leon4gr45's picture
Upload folder using huggingface_hub
1dbc34b verified
/**
* Vitest global setup file
* Runs before each test file
*/
import { vi, beforeEach } from 'vitest';
// Set test environment variables
process.env.NODE_ENV = 'test';
process.env.DATA_DIR = '/tmp/test-data';
// Reset all mocks before each test
beforeEach(() => {
vi.clearAllMocks();
});