JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 7643
  • Score
    100M100P100Q143774F
  • License MIT

Run only failed japa tests

Package Exports

  • @japa/run-failed-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()]
})