From 3aa85507ad3b6f9b846291ac6e33271735aeb7f3 Mon Sep 17 00:00:00 2001 From: Bijin A B Date: Thu, 2 Apr 2026 03:35:26 +0530 Subject: [PATCH] chore: test fix --- packages/bruno-electron/src/store/shell-env-state.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/bruno-electron/src/store/shell-env-state.js b/packages/bruno-electron/src/store/shell-env-state.js index 285de0a9e..57c116981 100644 --- a/packages/bruno-electron/src/store/shell-env-state.js +++ b/packages/bruno-electron/src/store/shell-env-state.js @@ -6,6 +6,11 @@ const TIMEOUT_MS = 60_000; let _promise = null; const _initWithTimeout = () => { + // @TODO: Temp skip during Playwright tests - otherwise it can hang on macOS CI + if (process.env.PLAYWRIGHT) { + return Promise.resolve(); + } + let timer; const timeout = new Promise((_, reject) => { timer = setTimeout(() => {