Say, I kick off all my 87 (random number here) tests and there are 5 (basically, "some") of them that test on the same page and all of them make changes to that same page... of course, the tests all use the same userid to authenticate. Nope, I cannot have several different userids here
The tests all run in parallel using playwright workers.
Is there a way to mark these "few tests", like to place them in a queue, such as they will run alone, not in parallel with each other ? Some keyword to add to the test ? Something like "alone" or "enqueue" ?
Or any other idea ? Thanks.