From aed47231a4c55dca9d46b13cd230e7b49a0a7391 Mon Sep 17 00:00:00 2001 From: Francois Best Date: Wed, 10 Jan 2024 13:42:45 +0100 Subject: [PATCH] test: No need to test search here (done in other tests) --- packages/e2e/cypress/e2e/hash-preservation.cy.js | 2 -- 1 file changed, 2 deletions(-) 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')