Skip to content

Commit 3e148a4

Browse files
committed
updated edit reports test to match gitfram
Signed-off-by: sumukhswamy <sumukhhs@amazon.com>
1 parent 5bb56cd commit 3e148a4

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

cypress/integration/plugins/reports-dashboards/02-edit.spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -185,4 +185,4 @@ describe('Cypress', () => {
185185
// check that re-direct to home page
186186
cy.get('#reportDefinitionDetailsLink').should('exist');
187187
});
188-
});
188+
});

cypress/integration/plugins/reports-dashboards/04-download.spec.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,9 @@ describe('Cypress', () => {
111111
it('Download from Report definition details page', () => {
112112
// create an on-demand report definition
113113

114-
cy.intercept('POST', '/_dashboards/api/reporting/generateReport/*').as('generateReport');
114+
cy.intercept('POST', '/_dashboards/api/reporting/generateReport/*').as(
115+
'generateReport'
116+
);
115117

116118
cy.visit(`${BASE_PATH}/app/reports-dashboards#/`, {
117119
waitForGetTenant: true,
@@ -138,4 +140,4 @@ describe('Cypress', () => {
138140

139141
cy.wait('@generateReport').its('response.statusCode').should('eq', 200);
140142
});
141-
});
143+
});

0 commit comments

Comments
 (0)