From 8c9916b0a0535f176943ea979d2cc21e20c8eece Mon Sep 17 00:00:00 2001 From: Beth Legesse Date: Wed, 3 Jun 2026 11:11:54 -0500 Subject: [PATCH] fix: skip flaky scriptQueryBuilder.results e2e test --- cypress/e2e/shared/scriptQueryBuilder.results.test.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cypress/e2e/shared/scriptQueryBuilder.results.test.ts b/cypress/e2e/shared/scriptQueryBuilder.results.test.ts index e85ef2d2f2..c442514442 100644 --- a/cypress/e2e/shared/scriptQueryBuilder.results.test.ts +++ b/cypress/e2e/shared/scriptQueryBuilder.results.test.ts @@ -9,7 +9,9 @@ const DELAY_FOR_FILE_DOWNLOAD = 5000 const DEFAULT_DELAY_MS = 2000 -describe('Script Builder', () => { +// Temporarily skipped due to consistent timeouts in remocal CI environment. +// Do not re-enable without investigating remocal resource constraints. +describe.skip('Script Builder', () => { const writeData: string[] = [] for (let i = 0; i < 30; i++) { writeData.push(`ndbc,air_temp_degc=70_degrees station_id_${i}=${i}`)