1.1.0 • Published 5 years ago

jest-watch-yarn-workspaces v1.1.0

Weekly downloads
2,224
License
MIT
Repository
-
Last release
5 years ago

jest-watch-yarn-workspaces npm version

A Jest watch plugin to select Yarn workspaces to test

Usage

Install

Install jest (it needs Jest 23+) and jest-watch-yarn-workspaces

yarn add --dev jest jest-watch-yarn-workspaces

# or with NPM

npm install --save-dev jest jest-watch-yarn-workspaces

Add it to your Jest config

In your package.json

{
  "jest": {
    "watchPlugins": ["jest-watch-yarn-workspaces"]
  }
}

Or in jest.config.js

module.exports = {
  watchPlugins: ['jest-watch-yarn-workspaces']
};

Run Jest in watch mode

yarn jest --watch

FAQ

Why is this not filtering my workspaces?

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