I upgraded Cypress from 9.5.2 to 10.3.0 and previously I was using cypress-cucumber-preprocessor:4.3.1 now I upgrade it to @badeball/cypress-cucumber-preprocessor:^11.4.0.
Before the upgrade, I was using cypress-tags for running the test using command
npx cypress-tags run --env TAGS="@regression" --browser chrome
but after the upgrade it's throwing me below error.
npm ERR! could not determine executable to run
Please find the sample feature below
Feature: Login Features
@regression
Scenario: Test sample login
Given I login to the website as "testUser"
Can someone help me to get an alternate option for running tests based on the tags with the latest Cypress and cucumber?