I\'m running Jest tests via npm test. Jest runs tests in parallel by default. Is there any way to make the tests run sequentially?
npm test
I have some tests cal
CLI options are documented and also accessible by running the command jest --help.
jest --help
You'll see the option you are looking for : --runInBand.