jhnns / rewire

Easy monkey-patching for node.js unit tests
MIT License
3.08k stars 128 forks source link

Rewire dosn't mock function #188

Closed alexandrsimply closed 3 years ago

alexandrsimply commented 3 years ago

Hi. I have media.ts with Media class and export by default Media instance. There is a logThis function that I want to mock.

Selection_034

In my test file, I have a logThisMock function.

Selection_036

And after this, I call mediaService.logThis(); and in the terminal, I see the result of the function in my class not mocked.

Selection_037