PRIX / lib /src /__tests__ /setup.js
Rachit-Tw's picture
Upload 169 files
9284ad7 verified
Raw
History Blame Contribute Delete
516 Bytes
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
// Jest setup file
const globals_1 = require("@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: globals_1.jest.fn(),
warn: globals_1.jest.fn(),
error: globals_1.jest.fn(),
debug: globals_1.jest.fn(),
};
//# sourceMappingURL=setup.js.map