From 985e042d2a2b5dea77cd504caab05a9f64c0f7ac Mon Sep 17 00:00:00 2001 From: Phillip Kelley-Dotson Date: Tue, 24 May 2022 14:49:46 -0700 Subject: [PATCH] test if test works --- .../cypress/integration/alerts_and_reports/alerts.test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/superset-frontend/cypress-base/cypress/integration/alerts_and_reports/alerts.test.ts b/superset-frontend/cypress-base/cypress/integration/alerts_and_reports/alerts.test.ts index 0025f4f51383b..97bf2cc9be854 100644 --- a/superset-frontend/cypress-base/cypress/integration/alerts_and_reports/alerts.test.ts +++ b/superset-frontend/cypress-base/cypress/integration/alerts_and_reports/alerts.test.ts @@ -38,8 +38,9 @@ describe('alert list view', () => { cy.get('[data-test="sort-header"]').eq(4).contains('Notification method'); 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(7).contains('Modified'); // TODO: this assert is flaky, we need to find a way to make it work consistenly + // cy.get('[data-test="sort-header"]').eq(7).contains('Active'); // cy.get('[data-test="sort-header"]').eq(8).contains('Actions'); }); });