Git Product home page Git Product logo

jest-mock-module's Introduction

Jest Mock Module

Dependabot badge Dependencies Build Status Coverage Status NPM Version

Extends jest to allow deep auto mocking of a module by spying on all functions and properties.

Introduction

Getting Started

Install the extension using pnpm, npm, yarn etc.

npm install -D "jest-mock-module"

The Jest Object

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.

Example Usage

// 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.

References

jest-mock-module's People

Contributors

dependabot[bot] avatar iamogbz avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.