I have test files in a order as shown in below image,
When I run npm test
or jest __test__
, test files run in random order every time.
I want fix order as below
001_user.test.js
002_project.test.js
003_model.test.js
How to achieve this?
I have test files in a order as shown in below image,
When I run npm test
or jest __test__
, test files run in random order every time.
I want fix order as below
001_user.test.js
002_project.test.js
003_model.test.js
How to achieve this?