Skip to content

Commit

Permalink
Fix Cypress test
Browse files Browse the repository at this point in the history
  • Loading branch information
pratham31012002 committed Nov 7, 2023
1 parent 425f089 commit 5f51653
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/cypress/tests/chartView/chartView_zoomFeature.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ describe('range changes in chartview should reflect in zoom', () => {
.get('#summary-charts .summary-chart__ramp .ramp')
.first()
.click(120, 20)
.click(185, 20);
.click(170, 20);

cy.get('#tab-zoom')
.should('be.visible');
Expand All @@ -306,7 +306,7 @@ describe('range changes in chartview should reflect in zoom', () => {
cy.get('body').type(zoomKey, { release: false })
.get('#summary-charts .summary-chart__ramp .ramp')
.first()
.click(185, 20)
.click(170, 20)
.click(250, 20);

cy.get('#tab-zoom')
Expand All @@ -333,7 +333,7 @@ describe('range changes in chartview should reflect in zoom', () => {
cy.get('body').type(zoomKey, { release: false })
.get('#summary-charts .summary-chart__ramp .ramp')
.first()
.click(185, 20)
.click(170, 20)
.click(225, 20);

cy.get('#tab-zoom')
Expand Down

0 comments on commit 5f51653

Please sign in to comment.