From 5ac6ba0a03283414cc817a69de39e043a1e9011c Mon Sep 17 00:00:00 2001 From: Carlos Feria <2582866+carlosthe19916@users.noreply.github.com> Date: Thu, 13 Mar 2025 21:51:48 +0100 Subject: [PATCH] :sparkles: align api setup timeout with ui setup Signed-off-by: Carlos Feria <2582866+carlosthe19916@users.noreply.github.com> --- tests/api/dependencies/global.setup.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/api/dependencies/global.setup.ts b/tests/api/dependencies/global.setup.ts index 641cefe..50dd8f9 100644 --- a/tests/api/dependencies/global.setup.ts +++ b/tests/api/dependencies/global.setup.ts @@ -14,6 +14,7 @@ setup.describe("Ingest initial data", () => { ); setup("Upload files", async ({ axios }) => { + setup.setTimeout(120_000); await uploadSboms(axios, SBOM_FILES); await uploadAdvisories(axios, ADVISORY_FILES); });