1.1.0 • Published 6 years ago

jest-watch-lerna-packages v1.1.0

Weekly downloads
704
License
MIT
Repository
-
Last release
6 years ago

jest-watch-lerna-packages npm version

A Jest watch plugin to select Lerna packages to test

Usage

Install

Install jest (it needs Jest 23+) and jest-watch-lerna-packages

yarn add --dev jest jest-watch-lerna-packages

# or with NPM

npm install --save-dev jest jest-watch-lerna-packages

Add it to your Jest config

In your package.json

{
  "jest": {
    "watchPlugins": ["jest-watch-lerna-packages"]
  }
}

Or in jest.config.js

module.exports = {
  watchPlugins: ['jest-watch-lerna-packages']
};

Run Jest in watch mode

yarn jest --watch

FAQ

Why is this not filtering my packages?

Make certain that you're using the SPACE key to toggle the selected state of packages and the ENTER key to confirm your settings.