jest-watch-repeat

Repeat test suite multiple times

MIT License

Downloads
78.7K
Stars
5
Committers
4

jest-watch-repeat

Loop tests n times.

Requires jest@23+.

Usage

To use jest-watch-repeat, add it to the watchPlugins section of the Jest configuration:

{
  "jest": {
    "watchPlugins": [
      "jest-watch-repeat", // or
      ["jest-watch-repeat", { "key": "r", "prompt": "repeat test runs." }],
      // options:
      ["jest-watch-repeat", {
        // always repeat, even if some tests failed.
        'always-repeat': true
      }]
    ]
  }
}

In watch mode, press r to invoke a prompt and enter number of times you want the tests to be repeated:

Watch Usage
  Press a to run all tests.
  Press f to run only failed tests.
  Press p to filter by a filename regex pattern.
  Press t to filter by a test name regex pattern.
  Press q to quit watch mode.
  Press r to repeat test runs.
  Press Enter to trigger a test run.
Repeat Mode Usage
  Press Esc to exit repeat mode.
  Press Enter to repeat test run n times.
 repeat › 3
Run only failed tests?
 (Y/N) > N
Package Rankings
Top 6.87% on Npmjs.org
Badges
Extracted from project README
NPM version NPM downloads Mentioned in Awesome Jest Github Actions Codecov Visual Studio Code