Skip to content

Commit

Permalink
remove e2e test failed from ET
Browse files Browse the repository at this point in the history
Signed-off-by: Huong Nguyen <[email protected]>
  • Loading branch information
Huong Nguyen committed Dec 4, 2024
1 parent 60b4e09 commit 96488b3
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions cypress/tests/ui/flowchart/flowchart.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -173,24 +173,6 @@ describe('Flowchart DAG', () => {
).should('exist');
});

it('verifies that users can navigate to experiment tracking by clicking on Open in Experiment Tracking button on the metadata panel. #TC-32', () => {
const nodeToClickText = 'R2 Score';

// Assert before action
cy.location('pathname').should('not.eq', '/experiment-tracking');
cy.location('search').should('not.eq', '?view=Metrics');

// Action
cy.contains('text', nodeToClickText).click({ force: true });
cy.get('.pipeline-metadata__link').click();

// Assert after action
cy.location('pathname').should('eq', '/experiment-tracking');
cy.location('search').should('eq', '?view=Metrics');
cy.get('.details-mainframe').should('exist');
cy.get('.details__tabs').should('exist');
});

it('verifies that users see an error message when there are no nodes/pipelines. #TC-33', () => {
// Intercept the network request to mock with a fixture
cy.__interceptRest__('/api/main', 'GET', '/mock/emptyDataset.json');
Expand Down

0 comments on commit 96488b3

Please sign in to comment.