forked from promptfoo/promptfoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvitest.setup.ts
More file actions
60 lines (50 loc) · 1.83 KB
/
Copy pathvitest.setup.ts
File metadata and controls
60 lines (50 loc) · 1.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/**
* Vitest setup file for all backend tests
*
* This file configures the test environment for all tests in the test/ directory.
*/
import { rmSync } from 'node:fs';
import path from 'node:path';
import { afterAll, afterEach, vi } from 'vitest';
import { closeTestDatabaseClients } from './src/database/testing';
import { mockProcessEnv } from './test/util/utils';
const TEST_CONFIG_DIR = path.join('.local', 'vitest', 'config', `worker-${process.pid}`);
mockProcessEnv({
NODE_ENV: 'test',
CODEX_HOME: './.local/vitest/codex-home',
PROMPTFOO_CACHE_TYPE: 'memory',
IS_TESTING: 'true',
PROMPTFOO_CONFIG_DIR: TEST_CONFIG_DIR,
ANTHROPIC_API_KEY: 'test-anthropic-api-key',
AZURE_OPENAI_API_HOST: 'test.openai.azure.com',
AZURE_OPENAI_API_KEY: 'test-azure-api-key',
AZURE_API_KEY: 'test-azure-api-key',
HF_API_TOKEN: 'test-hf-token',
OPENAI_API_KEY: 'test-openai-api-key',
PROMPTFOO_REMOTE_GENERATION_URL: undefined,
});
/**
* Global cleanup after each test to prevent memory leaks.
* This runs in every worker process after every test.
*/
afterEach(() => {
// Clear all mocks to prevent state leakage between tests
// Note: We use clearAllMocks() instead of restoreAllMocks() because
// restoreAllMocks() would break tests that set up spies at module/describe
// level expecting them to persist across tests within a describe block.
vi.clearAllMocks();
// Clear any pending timers
vi.clearAllTimers();
// Restore real timers if fake timers were used
vi.useRealTimers();
});
/**
* Cleanup after all tests in this worker complete.
*/
afterAll(async () => {
await closeTestDatabaseClients();
// Reset all modules to clear any cached state
vi.resetModules();
// Each worker gets a unique config dir, so we can safely remove only its own files.
rmSync(TEST_CONFIG_DIR, { recursive: true, force: true });
});