Run Jest tests sequentially
Today I learned how to run jest sequentially by just adding --runInBand
or -i
to the jest command. This way I can investigate which test execution is trowing some warnings in the codebase I am working on.
Today I learned how to run jest sequentially by just adding --runInBand
or -i
to the jest command. This way I can investigate which test execution is trowing some warnings in the codebase I am working on.