Skip to content

Commit

Permalink
test(v3): fix marker e2e tests after the last changes
Browse files Browse the repository at this point in the history
  • Loading branch information
diegoazh committed Apr 23, 2024
1 parent 0ffc7ed commit 0ff83fe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/v3/cypress/e2e/marker-icon.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,12 @@ describe('MarkerIcon component', () => {
.should('have.length', 4);
});

it('should empty the markers array from the map removing 2 of the 4 markers', function () {
it('should clean the markers array from the map removing 2 of the 4 markers', function () {
cy.visit('/');
cy.get('button[name=marker]').click();
cy.get('.gmv-map').should('exist');
cy.get('.gm-style').should('be.visible');
cy.get('.gmv-map').should('be.visible');
cy.get('#empty').click();
cy.get('.gmv-map')
.find('[class="GMAMP-maps-pin-view"]')
Expand Down

0 comments on commit 0ff83fe

Please sign in to comment.