From 924d921b709cea7643d2fd61d123ec5942cbe427 Mon Sep 17 00:00:00 2001 From: alexm Date: Wed, 5 Feb 2025 11:16:21 +0100 Subject: [PATCH] test: fix VnSearchbar --- test/cypress/integration/vnComponent/VnSearchBar.spec.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/test/cypress/integration/vnComponent/VnSearchBar.spec.js b/test/cypress/integration/vnComponent/VnSearchBar.spec.js index c710d5192..11d9bbe6a 100644 --- a/test/cypress/integration/vnComponent/VnSearchBar.spec.js +++ b/test/cypress/integration/vnComponent/VnSearchBar.spec.js @@ -1,7 +1,6 @@ /// describe('VnSearchBar', () => { const employeeId = ' #1'; - const salesPersonId = ' #18'; const idGap = '.q-item > .q-item__label'; const vnTableRow = '.q-virtual-scroll__content'; beforeEach(() => { @@ -12,11 +11,10 @@ describe('VnSearchBar', () => { it('should redirect to account summary page', () => { searchAndCheck('1', employeeId); - searchAndCheck('salesPerson', salesPersonId); + searchAndCheck('employee', employeeId); }); it('should stay on the list page if there are several results or none', () => { - cy.typeSearchbar('salesA{enter}'); cy.typeSearchbar('salesA{enter}'); checkTableLength(2); @@ -29,7 +27,6 @@ describe('VnSearchBar', () => { const searchAndCheck = (searchTerm, expectedText) => { cy.clearSearchbar(); cy.typeSearchbar(`${searchTerm}{enter}`); - cy.typeSearchbar(`${searchTerm}{enter}`); cy.get(idGap).should('have.text', expectedText); };