mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
9 lines
260 B
TypeScript
9 lines
260 B
TypeScript
// Import reflect-metadata to support TypeGraphQL
|
|
import "reflect-metadata";
|
|
|
|
import { vi } from "vitest";
|
|
|
|
// Suppress console output during tests
|
|
vi.spyOn(console, "log").mockImplementation(() => {});
|
|
vi.spyOn(console, "error").mockImplementation(() => {});
|