How to run Jest tests sequentially?

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?

I have some tests calling third-party code that relies on changing the current working directory.

11 Answers
11

Leave a Comment