DEV Community

Petros Amoiridis
Petros Amoiridis

Posted on

Run tests and stop on first failure

Here's how to run all tests in the same order as in the file and stop after the first failure:

mix test --seed 0 --max-failures 1
Enter fullscreen mode Exit fullscreen mode

Top comments (0)