@copilotkit/runtime
Version:
<img src="https://github.com/user-attachments/assets/0a6b64d9-e193-4940-a3f6-60334ac34084" alt="banner" style="border-radius: 12px; border: 2px solid #d6d4fa;" />
22 lines (18 loc) • 494 B
text/typescript
// Import reflect-metadata to support TypeGraphQL
import "reflect-metadata";
// Import Jest types and functions
import {
jest,
describe,
expect,
it,
test,
beforeEach,
afterEach,
beforeAll,
afterAll,
} from "@jest/globals";
// Suppress console output during tests
jest.spyOn(console, "log").mockImplementation(() => {});
jest.spyOn(console, "error").mockImplementation(() => {});
// The global types are already declared in global.d.ts, so we don't need to set globals here