Skip to content

Commit

Permalink
Fix syntax
Browse files Browse the repository at this point in the history
Signed-off-by: Simeon Widdis <sawiddis@amazon.com>
  • Loading branch information
Swiddis committed Feb 16, 2024
1 parent 716fa0b commit 51c8589
Showing 1 changed file with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,19 +115,15 @@ describe('Test reporting integration if plugin installed', () => {
cy.get('button.euiContextMenuItem:nth-child(1)')
.contains('Download PDF')
.click();
cy.get('body').should.contains(
'Please continue report generation in the new tab'
);
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').should.contains(
'Please continue report generation in the new tab'
);
cy.get('body').contains('Please continue report generation in the new tab');
});

it('Create on-demand report definition from context menu', () => {
Expand Down

0 comments on commit 51c8589

Please sign in to comment.