@copilotkit/runtime
Version:
<div align="center"> <a href="https://copilotkit.ai" target="_blank"> <img src="https://github.com/copilotkit/copilotkit/raw/main/assets/banner.png" alt="CopilotKit Logo"> </a>
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