What is the default order that unit tests are run for a project? And can I control the order that the unit tests are run?
1 Like
Replit unit tests are run in reverse order of creation (the most recent unit test you created will be run first), but every unit test is still run either way. As for your second question, the only way to control which unit tests are run first would be to manually delete all of your tests and recreate them in the order that you want.