Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@japa/run-failed-tests

japa35.6kMIT1.1.1TypeScript support: included

Run only failed japa tests

japa, tests

readme

@japa/run-failed-tests

Japa plugin to run only failed tests

github-actions-image npm-image license-image typescript-image

The @japa/run-failed-tests plugin runs only the failed tests on subsequent runs.

Here's how it works under the hood.

  • You ran the tests suite, and a couple of tests failed.
  • On the next run, only the failed test will run.
  • If all tests are green, the next run will execute all the tests.
npm i @japa/run-failed-tests 
import { runFailedTests } from '@japa/run-failed-tests'

configure({
  plugins: [runFailedTests()]
})