From 43b407a19066750b2ad458ab531633519ffedbf7 Mon Sep 17 00:00:00 2001 From: Asier Isayas Date: Wed, 21 Jan 2026 07:29:53 -0800 Subject: [PATCH] nit --- test/sql/document.spec.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/sql/document.spec.ts b/test/sql/document.spec.ts index a093da376..5d17c22c3 100644 --- a/test/sql/document.spec.ts +++ b/test/sql/document.spec.ts @@ -136,7 +136,9 @@ test.describe.serial("Upload Item", () => { if (existsSync(uploadDocumentDirPath)) { rmdirSync(uploadDocumentDirPath); } - await context?.dispose(); + if (!process.env.CI) { + await context?.dispose(); + } }); test.afterEach("Close Upload Items panel if still open", async () => {