chore: test fix

This commit is contained in:
Bijin A B
2026-04-02 03:35:26 +05:30
parent a895afadc5
commit 3aa85507ad

View File

@@ -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(() => {