Skip to content
Advertisement

How to mock a constructor instantiated class instance using jest?

Given a class Person that instantiates & uses another class Logger, how can the Logger‘s method be verified to be called when Person is instantiated in the example below?

JavaScript

One option is to pass Logger as a constructor argument like below:

JavaScript

However, is there any other way without changing the constructor to complete the test?

Advertisement

Answer

You can use jest.mock(moduleName, factory, options) and it will automatically mock all the exports from the given module.

So you can do jest.mock("./Logger") and the Logger constructor and all of its methods will get replaced with mock functions (that return undefined by default) and now you can spy on the behavior of the constructor and all of its methods.

JavaScript

All mock functions have a special .mock property where various data related to the mock function is available including the instances that the mock constructor function has created, when it was invoked with new.

So, all the instances created by the mock Logger are saved in Logger.mock.instances and you can use this to spy on the method calls.

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement