Manual Mocks

    Manual mocks are defined by writing a module in a subdirectory immediately adjacent to the module. For example, to mock a module called user in the models directory, create a file called user.js and put it in the models/__mocks__ directory.

    caution

    The __mocks__ folder is case-sensitive, so naming the directory __MOCKS__ will break on some systems.

    Manual Mocks - 图2note

    When we require that module in our tests (meaning we want to use the manual mock instead of the real implementation), explicitly calling jest.mock('./moduleName') is required.

    If the module you are mocking is a Node module (e.g.: lodash), the mock should be placed in the __mocks__ directory adjacent to node_modules (unless you configured roots to point to a folder other than the project root) and will be automatically mocked. There’s no need to explicitly call jest.mock('module_name').

    Scoped modules (also known as ) can be mocked by creating a file in a directory structure that matches the name of the scoped module. For example, to mock a scoped module called @scope/project-name, create a file at __mocks__/@scope/project-name.js, creating the @scope/ directory accordingly.

    caution

    When a manual mock exists for a given module, Jest’s module system will use that module when explicitly calling jest.mock('moduleName'). However, when automock is set to true, the manual mock implementation will be used instead of the automatically created mock, even if jest.mock('moduleName') is not called. To opt out of this behavior you will need to explicitly call jest.unmock('moduleName') in tests that should use the actual module implementation.

    Manual Mocks - 图4info

    In order to mock properly, Jest needs jest.mock('moduleName') to be in the same scope as the require/import statement.

    Here’s a contrived example where we have a module that provides a summary of all the files in a given directory. In this case, we use the core (built in) fs module.

    FileSummarizer.js

    1. const fs = require('fs');
    2. function summarizeFilesInDirectorySync(directory) {
    3. return fs.readdirSync(directory).map(fileName => ({
    4. directory,
    5. fileName,
    6. }));
    7. exports.summarizeFilesInDirectorySync = summarizeFilesInDirectorySync;

    Since we’d like our tests to avoid actually hitting the disk (that’s pretty slow and fragile), we create a manual mock for the fs module by extending an automatic mock. Our manual mock will implement custom versions of the fs APIs that we can build on for our tests:

    __mocks__/fs.js

    Now we write our test. In this case jest.mock('fs') must be called explicitly, because fs is Node’s build-in module:

    1. 'use strict';
    2. jest.mock('fs');
    3. describe('listFilesInDirectorySync', () => {
    4. const MOCK_FILE_INFO = {
    5. '/path/to/file1.js': 'console.log("file1 contents");',
    6. '/path/to/file2.txt': 'file2 contents',
    7. };
    8. // Set up some mocked out file info before each test
    9. });
    10. test('includes all files in the directory in the summary', () => {
    11. const FileSummarizer = require('../FileSummarizer');
    12. const fileSummary =
    13. FileSummarizer.summarizeFilesInDirectorySync('/path/to');
    14. expect(fileSummary.length).toBe(2);
    15. });
    16. });

    The example mock shown here uses to generate an automatic mock, and overrides its default behavior. This is the recommended approach, but is completely optional. If you do not want to use the automatic mock at all, you can export your own functions from the mock file. One downside to fully manual mocks is that they’re manual – meaning you have to manually update them any time the module they are mocking changes. Because of this, it’s best to use or extend the automatic mock when it works for your needs.

    To ensure that a manual mock and its real implementation stay in sync, it might be useful to require the real module using jest.requireActual(moduleName) in your manual mock and amending it with mock functions before exporting it.

    The code for this example is available at .

    If you’re using then you’ll normally be inclined to put your import statements at the top of the test file. But often you need to instruct Jest to use a mock before modules use it. For this reason, Jest will automatically hoist jest.mock calls to the top of the module (before any imports). To learn more about this and see it in action, see this repo.

    caution

    jest.mock calls cannot be hoisted to the top of the module if you enabled ECMAScript modules support. The ESM module loader always evaluates the static imports before executing code. See for details.

    If some code uses a method which JSDOM (the DOM implementation used by Jest) hasn’t implemented yet, testing it is not easily possible. This is e.g. the case with window.matchMedia(). Jest returns TypeError: window.matchMedia is not a function and doesn’t properly execute the test.

    In this case, mocking matchMedia in the test file should solve the issue:

    1. import './matchMedia.mock'; // Must be imported before the tested file
    2. import {myMethod} from './file-to-test';
    3. describe('myMethod()', () => {