dbx-mcp-server
Version:
A Model Context Protocol server for Dropbox integration with AI-powered PDF analysis, multi-directory indexing, and parallel processing
22 lines (21 loc) • 633 B
TypeScript
/**
* Custom logger utility for tests that suppresses stack traces
* while preserving the actual log messages.
*/
export declare const logger: {
log: (...args: any[]) => void;
error: (...args: any[]) => void;
warn: (...args: any[]) => void;
info: (...args: any[]) => void;
debug: (...args: any[]) => void;
};
/**
* Replaces the global console methods with our custom logger
* Call this at the beginning of your test file
*/
export declare function setupTestLogger(): void;
/**
* Restores the original console methods
* Call this in afterAll to clean up
*/
export declare function restoreConsole(): void;