How to mock modules like you can with jest?
With node/jest I was able to mock specific functions from modules using
How can I substitute
jest.mock at the start of the test file. How can I do this in Deno? I have a module which calls a function from another module:How can I substitute
foo with a mock/stub/fake for the scope of a test file?