npmplus-mcp-server
Version:
Production-ready MCP server for intelligent JavaScript package management. Works with Claude, Windsurf, Cursor, VS Code, and any MCP-compatible AI editor.
17 lines (15 loc) • 302 B
JavaScript
// Mock implementation of execa for testing
const mockExeca = jest.fn();
mockExeca.mockResolvedValue({
stdout: '',
stderr: '',
exitCode: 0,
failed: false,
killed: false,
signal: null,
command: 'mock command',
escapedCommand: 'mock command'
});
module.exports = {
execa: mockExeca
};