Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
Signed-off-by: Kavitha Conjeevaram Mohan <mohakavi@amazon.com>
  • Loading branch information
kavithacm committed Aug 29, 2023
1 parent 8b9b01b commit ddc1cd8
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ describe('Cypress', () => {
cy.get('[id="landingPageOnDemandDownload"]')
.contains('PDF')
.click({ force: true });
cy.get('.euiToastHeader__title').contains('Successfully generated report').should('exist');
cy.get('.euiToastHeader__title')
.contains('Successfully generated report')
.should('exist');
});

it('Download pdf from in-context menu', () => {
Expand Down Expand Up @@ -131,6 +133,8 @@ describe('Cypress', () => {

cy.get('#generateReportFromDetailsFileFormat').click({ force: true });

cy.get('.euiToastHeader__title').contains('Successfully generated report').should('exist');
cy.get('.euiToastHeader__title')
.contains('Successfully generated report')
.should('exist');
});
});

0 comments on commit ddc1cd8

Please sign in to comment.