From 15be132fbb36766d49131d00b78296533ae45586 Mon Sep 17 00:00:00 2001 From: Javier Segarra Date: Thu, 28 Nov 2024 22:20:57 +0100 Subject: [PATCH] perf: merge previous conflicts --- src/filters/index.js | 1 - test/cypress/support/commands.js | 18 ------------------ 2 files changed, 19 deletions(-) diff --git a/src/filters/index.js b/src/filters/index.js index e01d6a862..d6541ac39 100644 --- a/src/filters/index.js +++ b/src/filters/index.js @@ -16,7 +16,6 @@ import getUpdatedValues from './getUpdatedValues'; import getParamWhere from './getParamWhere'; import isDialogOpened from './isDialogOpened'; import parsePhone from './parsePhone'; -import isDialogOpened from './isDialogOpened'; export { getUpdatedValues, diff --git a/test/cypress/support/commands.js b/test/cypress/support/commands.js index a4c933d2e..435c40f23 100755 --- a/test/cypress/support/commands.js +++ b/test/cypress/support/commands.js @@ -276,18 +276,6 @@ Cypress.Commands.add('clickButtonsDescriptor', (id) => { .click(); }); -Cypress.Commands.add('clickButtonsDescriptor', (id) => { - cy.get(`.actions > .q-card__actions> .q-btn:nth-child(${id})`) - .invoke('removeAttr', 'target') - .click(); -}); - -Cypress.Commands.add('clickButtonsDescriptor', (id) => { - cy.get(`.actions > .q-card__actions> .q-btn:nth-child(${id})`) - .invoke('removeAttr', 'target') - .click(); -}); - Cypress.Commands.add('openActions', (row) => { cy.get('tbody > tr').eq(row).find('.actions > .q-btn').click(); }); @@ -302,12 +290,6 @@ Cypress.Commands.add('checkNotification', (text) => { }); }); -Cypress.Commands.add('_checkValueForm', (id, search) => { - cy.get( - `.grid-create > :nth-child(${id})> .q-field > .q-field__inner>.q-field__control> .q-field__control-container>.q-field__native >.q-field__input` - ).should('have.value', search); -}); - Cypress.Commands.add('searchByLabel', (label, value) => { cy.get(`[label="${label}"] > .q-field > .q-field__inner`).type(`${value}{enter}`); });