UNPKG

sfcc-dev-mcp

Version:

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

13 lines (10 loc) 269 B
// Mock implementation of webdav module const mockWebdavClient = { getDirectoryContents: jest.fn(), getFileContents: jest.fn(), }; const createClient = jest.fn(() => mockWebdavClient); module.exports = { createClient, __mockWebdavClient: mockWebdavClient, };