Skip to content

Commit

Permalink
fix for flaky node check
Browse files Browse the repository at this point in the history
Signed-off-by: Adam Tackett <tackadam@amazon.com>
  • Loading branch information
Adam Tackett committed Dec 18, 2024
1 parent 36c7267 commit 49203b1
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ describe('Testing Service map', () => {
cy.get('.vis-network canvas').should('have.attr', 'height').and('not.eq', '0');
});

it('Click on a node to see the details', () => {
it.only('Click on a node to see the details', () => {
cy.get('.euiText.euiText--medium .panel-title').contains('Service map');
cy.get('.vis-network canvas').should('exist');

Expand All @@ -202,6 +202,7 @@ describe('Testing Service map', () => {
cy.contains('60%');
cy.get('[data-text="Duration"]').click();
cy.contains('Average duration (ms)');
cy.get("[data-test-subj='tableHeaderCell_average_latency_1']").click();

// clicks on payment node
cy.get('.vis-network canvas').click(707, 388);
Expand Down

0 comments on commit 49203b1

Please sign in to comment.