From cc6855159b50e0ac127ec77238e1d8fae3408292 Mon Sep 17 00:00:00 2001 From: Kamil Gabryjelski Date: Tue, 24 May 2022 17:15:07 +0200 Subject: [PATCH] chore: Disable flaky assert in reports cypress test --- .../cypress/integration/alerts_and_reports/reports.test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/superset-frontend/cypress-base/cypress/integration/alerts_and_reports/reports.test.ts b/superset-frontend/cypress-base/cypress/integration/alerts_and_reports/reports.test.ts index c3007cc1a87d7..a44b389d2e858 100644 --- a/superset-frontend/cypress-base/cypress/integration/alerts_and_reports/reports.test.ts +++ b/superset-frontend/cypress-base/cypress/integration/alerts_and_reports/reports.test.ts @@ -39,6 +39,7 @@ describe('report list view', () => { cy.get('[data-test="sort-header"]').eq(5).contains('Created by'); cy.get('[data-test="sort-header"]').eq(6).contains('Owners'); cy.get('[data-test="sort-header"]').eq(7).contains('Active'); - cy.get('[data-test="sort-header"]').eq(8).contains('Actions'); + // TODO: this assert is flaky, we need to find a way to make it work consistenly + // cy.get('[data-test="sort-header"]').eq(8).contains('Actions'); }); });