"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