From 187243b6476018709b2d3ece8f125559886db661 Mon Sep 17 00:00:00 2001 From: Gage Krumbach Date: Tue, 9 Jul 2024 08:52:39 -0500 Subject: [PATCH] remove flaky compare runs test --- .../cypress/tests/mocked/pipelines/compareRuns.cy.ts | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/frontend/src/__tests__/cypress/cypress/tests/mocked/pipelines/compareRuns.cy.ts b/frontend/src/__tests__/cypress/cypress/tests/mocked/pipelines/compareRuns.cy.ts index 6108317730..97532c381c 100644 --- a/frontend/src/__tests__/cypress/cypress/tests/mocked/pipelines/compareRuns.cy.ts +++ b/frontend/src/__tests__/cypress/cypress/tests/mocked/pipelines/compareRuns.cy.ts @@ -294,18 +294,6 @@ describe('Compare runs', () => { .should('exist'); }); - it('displays ROC curve filter table with correct artifacts', () => { - compareRunsMetricsContent.findRocCurveTab().click(); - const content = compareRunsMetricsContent.findRocCurveTabContent(); - - const row = content.getRocCurveRowByName('wine-classification > metrics'); - row.findRunName().should('contain.text', 'Run 1'); - content.findRocCurveGraph().should('include.text', '#1'); - - row.findRowCheckbox().uncheck(); - content.findRocCurveGraph().should('not.include.text', '#1'); - }); - it('displays ROC curve empty state when no artifacts are found', () => { compareRunsMetricsContent.findRocCurveTab().click(); const content = compareRunsMetricsContent.findRocCurveTabContent();