![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
jest-mock-module
Advanced tools
Extends jest to allow deep auto mocking of a module by spying on all functions and properties.
Install the extension using pnpm, npm, yarn etc.
npm install -D "jest-mock-module"
The jest object needs to be extended in every test file. This allows access to the jest-mock-module
api.
jest.spy(moduleName)
This works like jest.doMock.
The main difference is a factory does not need to be provided as it automatically generates one using jest.createSpyFromModule
.
Internally uses jest.mock
so works with other jest
mocking methods.
jest.createSpyFromModule(moduleName)
This works like jest.createMockFromModule.
The main difference is the returned mock is created using jest.spyOnObject
.
jest.spyOnObject(object)
This creates a deep mock of the object spying on all the internal properties using jest-spy-on.
// src/example.js
module.exports = {
testing: "123";
nested: {
test: () => true;
testing: "456";
}
}
import * as mock from "jest-mock-module";
mock.extend(jest);
// Only to be used on valid modules
jest.spy("src/example");
// Since babel-jest does not hoist jest.spy
// import calls need to come after the spy mock
const example = require("src/example");
// Check module object properties
jest.isMockProp(example, "testing"); // true
console.log(example.testing); // 123
// Respy on module object to get mockable
jest.spyOn(example).testing.mockValueOnce("789");
console.log(example.testing); // 789
console.log(example.testing); // 123
// Check module nested object properties
jest.isMockMethod(example.nested.test); // true
jest.isMockProp(example.nested, "testing"); // true
It keeps the same structure of the module but replaces all functions and properties with jest mocks.
jest.createSpyFromModule
is exported and can be used like jest.createMockFromModule
. It is used internally by jest.spy
in combination with jest.mock
to provide a factory in place of Jest's automocking feature.jest-spy-on
- Guide to spying on module methodsjest-mock-props
- Guide to spying on object propertiesFAQs
Project description
The npm package jest-mock-module receives a total of 30 weekly downloads. As such, jest-mock-module popularity was classified as not popular.
We found that jest-mock-module demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.