mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-13 04:48:15 +00:00
5 lines
175 B
TypeScript
5 lines
175 B
TypeScript
// Test setup file for nostr extension
|
|
import { vi } from "vitest";
|
|
|
|
// Mock console.error to suppress noise in tests
|
|
vi.spyOn(console, "error").mockImplementation(() => {});
|