Azure DevOps MCP Server

  • tests
// Increase the default timeout for all tests jest.setTimeout(10000); // Clear all mocks before each test beforeEach(() => { jest.clearAllMocks(); }); // Restore all mocks after each test afterEach(() => { jest.restoreAllMocks(); });