My VS Code extension in TypeScript uses the Axios library for API calls. I have written tests using the Mocha framework, which are run locally and through Github Actions. Recently, I integrated code coverage reporting with `c8` and I am looking to enhance the coverage, especially of the Axios calls. I came across an article that suggests using the Jest framework to mock Axios, but running into issues due to conflicts with Mocha. Is there a straightforward example of mocking Axios calls with Mocha?