jest-watch-repeat
TypeScript icon, indicating that this package has built-in type declarations

3.0.1 • Public • Published

jest-watch-repeat

NPM version NPM downloads Mentioned in Awesome Jest

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

/jest-watch-repeat/

    Package Sidebar

    Install

    npm i jest-watch-repeat

    Weekly Downloads

    2,539

    Version

    3.0.1

    License

    MIT

    Unpacked Size

    27.8 kB

    Total Files

    21

    Last publish

    Collaborators

    • unional