mirror of
https://github.com/moltbot/moltbot.git
synced 2026-04-23 22:55:24 +00:00
6 lines
175 B
TypeScript
6 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(() => {});
|