Add Pan Zoom toggle test

This commit is contained in:
Sidharth Vinod
2022-08-15 12:56:59 +05:30
parent a713f34354
commit ec4afcc184
+15
View File
@@ -67,3 +67,18 @@ describe('Auto sync tests', () => {
.should('exist');
});
});
describe.only('Pan and Zoom', () => {
beforeEach(() => {
cy.clearLocalStorage();
cy.visit('/');
disableDebounce();
});
it('should toggle pan and zoom', () => {
cy.get('#svg-pan-zoom-reset-pan-zoom').should('not.exist');
cy.contains('Pan & Zoom').click();
cy.get('#svg-pan-zoom-reset-pan-zoom').should('exist');
cy.contains('Pan & Zoom').click();
cy.get('#svg-pan-zoom-reset-pan-zoom').should('not.exist');
});
});