From e1ea33c0cc3554ad26a95a9679838105b59ab6d4 Mon Sep 17 00:00:00 2001 From: jorgep Date: Mon, 17 Feb 2025 15:46:13 +0100 Subject: [PATCH] fix: refs #8484 update Boss type from 'selectWorker' to 'select' --- test/cypress/support/commands.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/test/cypress/support/commands.js b/test/cypress/support/commands.js index 26250b458..71956f945 100755 --- a/test/cypress/support/commands.js +++ b/test/cypress/support/commands.js @@ -161,9 +161,6 @@ Cypress.Commands.add('fillInForm', (obj, form = '.q-form > .q-card') => { case 'select': cy.selectOption(el, val); break; - case 'selectWorker': - cy.selectWorkerOption(el, val); - break; case 'date': cy.get(el).type(val.split('-').join('')); break;