mock
mock copied to clipboard
Utilities to help mock behavior, spy on function calls, stub methods, and fake time for tests.
I removed the last 2 tests here because they relied on system time and would intermittently fail. Need to figure out a better way to test FakeTime. https://github.com/udibo/mock/blob/a22be7fe275697da87fb534e0c92c398eade28d7/time_test.ts#L303-L360
[Fetch](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API) is a commonly used global function that users would want to be able to mock. Currently they would have to use stub and design their own replacement fetch function....