From 661acdee9514b6cf2e17a01f624f1a4881c67b6f Mon Sep 17 00:00:00 2001 From: Sam Lord Date: Thu, 12 Oct 2023 14:16:15 +0100 Subject: [PATCH] Made portal tests run fully parallelised refs: https://github.com/TryGhost/DevOps/issues/78 --- ghost/core/playwright.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ghost/core/playwright.config.js b/ghost/core/playwright.config.js index 56b0c6fa8a..63314f384e 100644 --- a/ghost/core/playwright.config.js +++ b/ghost/core/playwright.config.js @@ -24,7 +24,8 @@ const config = { }, { name: 'portal', - testDir: 'test/e2e-browser/portal' + testDir: 'test/e2e-browser/portal', + fullyParallel: true } ] };