Skip to content

Commit

Permalink
test: fix map db pin count
Browse files Browse the repository at this point in the history
  • Loading branch information
benfurber committed Sep 19, 2024
1 parent 1bd1628 commit 4194906
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/cypress/src/integration/map.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ describe('[Map]', () => {
cy.step('New map shows the cards')
cy.get('[data-cy="welome-header"]').should('be.visible')
cy.get('[data-cy="CardList-desktop"]').should('be.visible')
cy.get('[data-cy="list-results"]').contains('51 results in view')
cy.get('[data-cy="list-results"]').contains('52 results in view')

cy.step('Map filters can be used')
cy.get('[data-cy=FilterList]')
Expand All @@ -37,7 +37,7 @@ describe('[Map]', () => {
cy.get('[data-cy=MapListFilter]').first().click()
cy.get('[data-cy="list-results"]').contains('6 results in view')
cy.get('[data-cy=MapListFilter-active]').first().click()
cy.get('[data-cy="list-results"]').contains('51 results in view')
cy.get('[data-cy="list-results"]').contains('52 results in view')

cy.step('As the user moves in the list updates')
for (let i = 0; i < 10; i++) {
Expand Down

0 comments on commit 4194906

Please sign in to comment.