PRIX / src /__tests__ /setup.ts
yamxxx1's picture
Upload 139 files
7da7e2c verified
Raw
History Blame
347 Bytes
// Jest setup file
import { jest } from '@jest/globals'
// Mock environment variables
process.env.GROQ_API_KEY = 'test-api-key'
process.env.GITHUB_TOKEN = 'test-github-token'
process.env.LOG_LEVEL = 'silent'
// Global test utilities
global.console = {
...console,
log: jest.fn(),
warn: jest.fn(),
error: jest.fn(),
debug: jest.fn(),
}