Skip to content

Commit

Permalink
fix 4-trace-analytics-traces
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Sebastian <[email protected]>
  • Loading branch information
paulstn committed Feb 21, 2025
1 parent 4a3b6e6 commit 2d20c96
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,11 @@ describe('Creating visualizations', () => {
.type(PPL_VISUALIZATIONS_NAMES[0], {
delay: 50,
});
cy.intercept('POST', '/_dashboards/api/observability/event_analytics/saved_objects/vis').as('savedVisFetch');
cy.get('[data-test-subj="eventExplorer__querySaveConfirm"]')
.trigger('mouseover')
.click();
cy.wait('@savedVisFetch');
cy.wait(delay);
cy.get('.euiToastHeader__title').contains('successfully').should('exist');
});
Expand Down Expand Up @@ -133,10 +135,12 @@ describe('Testing panels table', () => {
.trigger('mouseover')
.click();
cy.wait(delay);
cy.intercept('POST', '/_dashboards/api/observability/operational_panels/panels/clone').as('clonePanel');
cy.get('.euiButton__text')
.contains('Duplicate')
.trigger('mouseover')
.click();
cy.wait('@clonePanel');
cy.wait(delay);

cy.get('.euiCheckbox__input[title="Select this row"]')
Expand Down

0 comments on commit 2d20c96

Please sign in to comment.