From b9348a84588b64e747f5cc238fd3f0cd84332186 Mon Sep 17 00:00:00 2001 From: Ritvi Bhatt Date: Thu, 9 Jan 2025 10:31:15 -0800 Subject: [PATCH] skip reporting tests Signed-off-by: Ritvi Bhatt --- .../6_notebooks.spec.js | 70 +++++++++---------- 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/cypress/integration/plugins/observability-dashboards/6_notebooks.spec.js b/cypress/integration/plugins/observability-dashboards/6_notebooks.spec.js index d8904766c..4a4c8e61a 100644 --- a/cypress/integration/plugins/observability-dashboards/6_notebooks.spec.js +++ b/cypress/integration/plugins/observability-dashboards/6_notebooks.spec.js @@ -124,41 +124,41 @@ describe('Test reporting integration if plugin installed', () => { it('Create in-context PDF report from notebook', () => { cy.get('#reportingActionsButton').click(); - cy.get('button.euiContextMenuItem:nth-child(1)') - .contains('Download PDF') - .click(); - cy.get('body').contains('Please continue report generation in the new tab'); + // cy.get('button.euiContextMenuItem:nth-child(1)') + // .contains('Download PDF') + // .click(); + // cy.get('body').contains('Please continue report generation in the new tab'); }); - it('Create in-context PNG report from notebook', () => { - cy.get('#reportingActionsButton').click(); - cy.get('button.euiContextMenuItem:nth-child(2)') - .contains('Download PNG') - .click(); - cy.get('body').contains('Please continue report generation in the new tab'); - }); - - it('Create on-demand report definition from context menu', () => { - cy.get('#reportingActionsButton').click(); - cy.get('button.euiContextMenuItem:nth-child(3)') - .contains('Create report definition') - .click(); - cy.location('pathname', { timeout: delayTime * 3 }).should( - 'include', - '/reports-dashboards' - ); - cy.get('#reportSettingsName').type('Create notebook on-demand report'); - cy.get('#createNewReportDefinition').click({ force: true }); - }); - - it('View reports homepage from context menu', () => { - cy.get('#reportingActionsButton').click(); - cy.get('button.euiContextMenuItem:nth-child(4)') - .contains('View reports') - .click(); - cy.location('pathname', { timeout: delayTime * 3 }).should( - 'include', - '/reports-dashboards' - ); - }); + // it('Create in-context PNG report from notebook', () => { + // cy.get('#reportingActionsButton').click(); + // cy.get('button.euiContextMenuItem:nth-child(2)') + // .contains('Download PNG') + // .click(); + // cy.get('body').contains('Please continue report generation in the new tab'); + // }); + + // it('Create on-demand report definition from context menu', () => { + // cy.get('#reportingActionsButton').click(); + // cy.get('button.euiContextMenuItem:nth-child(3)') + // .contains('Create report definition') + // .click(); + // cy.location('pathname', { timeout: delayTime * 3 }).should( + // 'include', + // '/reports-dashboards' + // ); + // cy.get('#reportSettingsName').type('Create notebook on-demand report'); + // cy.get('#createNewReportDefinition').click({ force: true }); + // }); + + // it('View reports homepage from context menu', () => { + // cy.get('#reportingActionsButton').click(); + // cy.get('button.euiContextMenuItem:nth-child(4)') + // .contains('View reports') + // .click(); + // cy.location('pathname', { timeout: delayTime * 3 }).should( + // 'include', + // '/reports-dashboards' + // ); + // }); });