UNPKG

sfcc-dev-mcp

Version:

MCP server for Salesforce B2C Commerce Cloud development assistance including logs, debugging, and development tools

15 lines (12 loc) 319 B
// Mock implementation of webdav module const mockWebdavClient = { getDirectoryContents: jest.fn(), getFileContents: jest.fn(), stat: jest.fn(), createReadStream: jest.fn(), }; const createClient = jest.fn(() => mockWebdavClient); module.exports = { createClient, __mockWebdavClient: mockWebdavClient, };