Fix(cypress): Fix e2e failing on master (#32494)

Этот коммит содержится в:
yasser khan
2025-07-03 10:19:58 +05:30
коммит произвёл GitHub
родитель 6004d15f9e
Коммит 5cd3a3f745
3 изменённых файлов: 5 добавлений и 7 удалений

Просмотреть файл

@@ -45,13 +45,11 @@ describe('Search', () => {
// # Verify that the cleared search text does not appear on the search box
cy.uiGetSearchContainer().should('be.visible').click();
cy.uiGetSearchBox().should('be.empty');
cy.uiGetSearchContainer().should('be.visible').click();
cy.uiGetSearchContainer().type('{esc}');
cy.uiGetSearchBox().type('{esc}');
// # Verify that the Search term input box is still cleared and search term does not reappear when RHS opens
cy.uiGetSearchContainer().should('be.visible').click();
cy.uiGetSearchBox().and('be.empty');
cy.uiGetSearchContainer().should('be.visible').click();
cy.uiGetSearchContainer().type('{esc}');
cy.uiGetSearchBox().type('{esc}');
});
});