From 063cd6189bef0998c63a3be638a25b81c80ebdf4 Mon Sep 17 00:00:00 2001 From: Vijay Budhram Date: Tue, 25 Oct 2022 15:45:29 -0400 Subject: [PATCH] fix(tests): Increase playwright ci worker to 4 --- packages/functional-tests/playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/functional-tests/playwright.config.ts b/packages/functional-tests/playwright.config.ts index e55fe7bb1e..c56ae8c0d3 100644 --- a/packages/functional-tests/playwright.config.ts +++ b/packages/functional-tests/playwright.config.ts @@ -64,7 +64,7 @@ const config: PlaywrightTestConfig = { ], ] : 'list', - workers: CI ? 2 : undefined, + workers: CI ? 4 : undefined, maxFailures: CI ? 2 : 0, };