From 46124a635bfd488ae5e186683601c17c36e096fa Mon Sep 17 00:00:00 2001 From: Darryl Pogue Date: Wed, 11 Mar 2026 15:24:30 -0700 Subject: [PATCH] chore(tests): Increase timeout on plugman install tests These tests are intermittently (but commonly) failing in CI on Windows due to hitting this timeout. As a stopgap measure, let's increase the timeout and see if that makes it more reliable. --- spec/plugman/install.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/plugman/install.spec.js b/spec/plugman/install.spec.js index c630d408e..93214b73c 100644 --- a/spec/plugman/install.spec.js +++ b/spec/plugman/install.spec.js @@ -105,7 +105,7 @@ describe('plugman/install', () => { api.addPlugin.and.callThrough(); events.removeAllListeners('results'); }); - }, 2 * TIMEOUT); + }, 3 * TIMEOUT); afterAll(() => { fs.rmSync(temp_dir, { recursive: true, force: true });