babel-plugin-jest-hoist
TypeScript icon, indicating that this package has built-in type declarations

29.6.3 • Public • Published

babel-plugin-jest-hoist

Babel plugin to hoist jest.disableAutomock, jest.enableAutomock, jest.unmock, jest.mock, calls above import statements. This plugin is automatically included when using babel-jest.

Installation

$ yarn add --dev babel-plugin-jest-hoist

Usage

Via babel.config.js (Recommended)

module.exports = {
  plugins: ['jest-hoist'],
};

Via CLI

$ babel --plugins jest-hoist script.js

Via Node API

require('@babel/core').transform('code', {
  plugins: ['jest-hoist'],
});

Readme

Keywords

none

Package Sidebar

Install

npm i babel-plugin-jest-hoist

Weekly Downloads

24,629,751

Version

29.6.3

License

MIT

Unpacked Size

14.3 kB

Total Files

5

Last publish

Collaborators

  • simenb
  • cpojer
  • aaronabramov
  • openjs-operations