📅 You're Invited: Meet the Socket team at RSAC (April 28 – May 1).RSVP
Socket
Sign inDemoInstall
Socket

jest-watch-master

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jest-watch-master

Jest watch plugin for checking changes since master

1.0.0
latest
npm
Version published
Weekly downloads
4.8K
-39.42%
Maintainers
1
Weekly downloads
 
Created
Source

jest-watch-master

Jest watch plugin for checking changes since master

Requires Jest >= 23.6.0

Install

Install jest and jest-watch-master

yarn add --dev jest jest-watch-master

# or with NPM

npm install --save-dev jest jest-watch-master

Add it to your Jest config

In your package.json:

{
  "jest": {
    "watchPlugins": ["jest-watch-master"]
  }
}

Or in jest.config.js

module.exports = {
  // ...
  watchPlugins: ['jest-watch-master'],
};

Options

branch: string

To specify a branch other than master, use the branch setting:

{
  "jest": {
    "watchPlugins": [["jest-watch-master", { "branch": "feature" }]]
  }
}

Keywords

jest

FAQs

Package last updated on 11 Sep 2018

Did you know?

Socket

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.

Install

Related posts