From a02ff218df9000e29ff0747c6b575859cf98a0f7 Mon Sep 17 00:00:00 2001 From: Ryan McKinley Date: Thu, 17 Apr 2025 13:07:18 +0300 Subject: [PATCH] Geomap: skip flakey e2e tests (#104155) --- .../panels-suite/geomap-spatial-operations-transform.spec.ts | 2 +- e2e/panels-suite/geomap-spatial-operations-transform.spec.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/e2e/old-arch/panels-suite/geomap-spatial-operations-transform.spec.ts b/e2e/old-arch/panels-suite/geomap-spatial-operations-transform.spec.ts index 52ca7ed0fac..461d089ccfc 100644 --- a/e2e/old-arch/panels-suite/geomap-spatial-operations-transform.spec.ts +++ b/e2e/old-arch/panels-suite/geomap-spatial-operations-transform.spec.ts @@ -7,7 +7,7 @@ describe('Geomap spatial operations', () => { e2e.flows.login(Cypress.env('USERNAME'), Cypress.env('PASSWORD')); }); - it('Tests location auto option', () => { + it.skip('Tests location auto option', () => { e2e.flows.openDashboard({ uid: DASHBOARD_ID, queryParams: { editPanel: 1 } }); e2e.components.Tab.title('Transform data').should('be.visible').click(); e2e.components.Transforms.addTransformationButton().scrollIntoView().should('be.visible').click(); diff --git a/e2e/panels-suite/geomap-spatial-operations-transform.spec.ts b/e2e/panels-suite/geomap-spatial-operations-transform.spec.ts index bce8268b36a..615e69996a4 100644 --- a/e2e/panels-suite/geomap-spatial-operations-transform.spec.ts +++ b/e2e/panels-suite/geomap-spatial-operations-transform.spec.ts @@ -2,7 +2,7 @@ import { e2e } from '../utils'; const DASHBOARD_ID = 'P2jR04WVk'; -describe('Geomap spatial operations', () => { +describe.skip('Geomap spatial operations', () => { beforeEach(() => { e2e.flows.login(Cypress.env('USERNAME'), Cypress.env('PASSWORD')); });