I need to selectively run certain tests from a pool of 50 test files located in the integration folder. Specifically, I only want 10 of them to execute. In an attempt to achieve this, I am trying to configure the selection process within the support/index.js file as shown below:
import './commands'
import '../integration/login.spec.js'
import '../integration/admin.spec.js'
import '../integration/customer.spec.js'
My goal is to have only the specified files (login.spec.js, admin.spec.js, and customer.spec.js) visible on the Cypress test runner, while hiding all other test files. However, the code snippet provided above is not producing the desired results.