Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: properly return mocks when using jest.isolatedModules #11882

Merged
merged 2 commits into from Sep 17, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -4,6 +4,8 @@

### Fixes

- `[jest-runtime]` Fix regression when using `jest.isolateModules` and mocks ([#11882](https://github.com/facebook/jest/pull/11882))

### Chore & Maintenance

### Performance
Expand Down
55 changes: 55 additions & 0 deletions e2e/__tests__/isolateModules.test.ts
@@ -0,0 +1,55 @@
/**
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

import {tmpdir} from 'os';
import * as path from 'path';
import {cleanup, createEmptyPackage, writeFiles} from '../Utils';
import runJest from '../runJest';

const DIR = path.resolve(tmpdir(), 'isolate-modules.test');

beforeEach(() => {
cleanup(DIR);
createEmptyPackage(DIR);
});

afterAll(() => cleanup(DIR));

test('works with mocks', () => {
writeFiles(DIR, {
'config.js': `
module.exports.getBoolean = function getBoolean(variableName) {
return false;
}
`,
'read.js': `
const {getBoolean} = require('./config');

const value = getBoolean('foo');
console.log("was " + value);
`,
'test.js': `
jest.mock('./config');
const config = require('./config');

test('dummy test', () => {
const configGetMock = config.getBoolean.mockImplementation(() => {
return true;
});

jest.isolateModules(() => {
require("./read");
});

expect(configGetMock).toBeCalledTimes(1);
})
`,
});
const {exitCode} = runJest(DIR);

expect(exitCode).toBe(0);
});
10 changes: 6 additions & 4 deletions packages/jest-runtime/src/index.ts
Expand Up @@ -861,12 +861,14 @@ export default class Runtime {
{conditions: this.cjsConditions},
);

const mockRegistry = this._isolatedMockRegistry || this._mockRegistry;

if (mockRegistry.get(moduleID)) {
return mockRegistry.get(moduleID);
if (this._isolatedMockRegistry?.has(moduleID)) {
return this._isolatedMockRegistry.get(moduleID);
} else if (this._mockRegistry.has(moduleID)) {
return this._mockRegistry.get(moduleID);
}

const mockRegistry = this._isolatedMockRegistry || this._mockRegistry;

if (this._mockFactories.has(moduleID)) {
// has check above makes this ok
const module = this._mockFactories.get(moduleID)!();
Expand Down