Hi,
I would like to know how can you run playwright tests in parallel on same browser,
I know you can the following in order to run the same tests parallelly on different browsers.
Is there a test runner you can use in order to avoid using Promise.all method?
(async function() {
await Promise.all([
test(firefox),
test(chromium)
]);
})();