From c1804790a8d890dedd1306501a5cee92ebb213d0 Mon Sep 17 00:00:00 2001 From: jorgep Date: Wed, 6 Mar 2024 10:19:14 +0100 Subject: [PATCH] fix: refs #6942 vnLocation --- test/cypress/integration/VnLocation.spec.js | 37 +++++++++++---------- 1 file changed, 20 insertions(+), 17 deletions(-) diff --git a/test/cypress/integration/VnLocation.spec.js b/test/cypress/integration/VnLocation.spec.js index 02b924e4d..6d5d03298 100644 --- a/test/cypress/integration/VnLocation.spec.js +++ b/test/cypress/integration/VnLocation.spec.js @@ -1,7 +1,8 @@ -const locationOptions ='[role="listbox"] > div.q-virtual-scroll__content > .q-item' +const locationOptions = '[role="listbox"] > div.q-virtual-scroll__content > .q-item'; describe('VnLocation', () => { - describe('Create',()=>{ - const inputLocation = ':nth-child(3) > :nth-child(1) > .q-field > .q-field__inner > .q-field__control'; + describe('Create', () => { + const inputLocation = + ':nth-child(3) > :nth-child(1) > .q-field > .q-field__inner > .q-field__control'; beforeEach(() => { cy.viewport(1280, 720); cy.login('developer'); @@ -9,40 +10,42 @@ describe('VnLocation', () => { cy.waitForElement('.q-card'); }); - it('Show all options', function() { - cy.get(inputLocation).click(); - cy.get(locationOptions).should('have.length',5); + it('Show all options', function () { + cy.get(inputLocation).click(); + cy.get(locationOptions).should('have.length', 5); }); - it('input filter location as "al"', function() { + it('input filter location as "al"', function () { cy.get(inputLocation).click(); cy.get(inputLocation).clear(); cy.get(inputLocation).type('al'); - cy.get(locationOptions).should('have.length',3); + cy.get(locationOptions).should('have.length', 5); }); - it('input filter location as "ecuador"', function() { + it('input filter location as "ecuador"', function () { cy.get(inputLocation).click(); cy.get(inputLocation).clear(); cy.get(inputLocation).type('ecuador'); - cy.get(locationOptions).should('have.length',1); + cy.get(locationOptions).should('have.length', 1); cy.get(`${locationOptions}:nth-child(1)`).click(); - cy.get(':nth-child(3) > :nth-child(1) > .q-field > .q-field__inner > .q-field__control > :nth-child(2) > .q-icon').click(); - + cy.get( + ':nth-child(3) > :nth-child(1) > .q-field > .q-field__inner > .q-field__control > :nth-child(2) > .q-icon' + ).click(); }); }); - describe('Fiscal-data',()=>{ - const inputLocation = ':nth-child(6) > :nth-child(1) > .q-field > .q-field__inner > .q-field__control'; + describe('Fiscal-data', () => { + const inputLocation = + ':nth-child(6) > :nth-child(1) > .q-field > .q-field__inner > .q-field__control'; beforeEach(() => { cy.viewport(1280, 720); cy.login('developer'); - cy.visit('/#/supplier/567/fiscal-data', {timeout: 2000}); + cy.visit('/#/supplier/567/fiscal-data', { timeout: 2000 }); cy.waitForElement('.q-card'); }); - it('Show all options', function() { + it('Show all options', function () { cy.get(inputLocation).click(); cy.get(locationOptions).should('have.length', 1); }); }); -}) +});