Currently, I am creating my E2E tests using testcafe with a test backend that does not have support for concurrency. This means that if two tests are running in parallel, the test backend crashes.
When I run tests against a single browser, they are executed one after the other sequentially. However, when I specify multiple browsers, the tests also run sequentially within each browser, but they all start at the same time simultaneously.
My goal is for testcafe to complete all tests in one browser before moving on to the next browser and executing all tests there as well.
Is it possible to achieve this sequence of testing?