diff --git a/packages/e2e/cypress/e2e/hash-preservation.cy.js b/packages/e2e/cypress/e2e/hash-preservation.cy.js index 181f8f1d..83ad4e0b 100644 --- a/packages/e2e/cypress/e2e/hash-preservation.cy.js +++ b/packages/e2e/cypress/e2e/hash-preservation.cy.js @@ -3,10 +3,8 @@ function runTest() { cy.contains('#hydration-marker', 'hydrated').should('be.hidden') cy.get('#string_set_a').click() - cy.location('search').should('eq', '?string=a') cy.location('hash').should('eq', '#hash') cy.get('#string_set_b').click() - cy.location('search').should('eq', '?string=b') cy.location('hash').should('eq', '#hash') cy.get('#string_clear').click() cy.location('hash').should('eq', '#hash')