From 49a130c68c05542ff98d6d2c51c0af2717ad3d24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20Adel=C3=B6w?= Date: Mon, 9 Mar 2026 14:31:13 +0100 Subject: [PATCH 1/2] bump a timeout somewhat MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Fredrik Adelöw --- plugins/api-docs/src/setupTests.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/api-docs/src/setupTests.ts b/plugins/api-docs/src/setupTests.ts index 03227e1415..d999dcef27 100644 --- a/plugins/api-docs/src/setupTests.ts +++ b/plugins/api-docs/src/setupTests.ts @@ -23,3 +23,5 @@ Object.defineProperty(global, 'TextEncoder', { Object.defineProperty(global, 'TextDecoder', { value: require('node:util').TextDecoder, }); + +jest.setTimeout(15_000); From ace86adcf78ced070a5a6fd3ee12c2d4fecca3e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20Adel=C3=B6w?= Date: Mon, 9 Mar 2026 14:38:17 +0100 Subject: [PATCH 2/2] Update plugins/api-docs/src/setupTests.ts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: Fredrik Adelöw --- plugins/api-docs/src/setupTests.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/api-docs/src/setupTests.ts b/plugins/api-docs/src/setupTests.ts index d999dcef27..19b6d29795 100644 --- a/plugins/api-docs/src/setupTests.ts +++ b/plugins/api-docs/src/setupTests.ts @@ -24,4 +24,5 @@ Object.defineProperty(global, 'TextDecoder', { value: require('node:util').TextDecoder, }); +// Use a 15s timeout to accommodate the slowest API docs rendering tests under concurrency. jest.setTimeout(15_000);