Why is it wrong for me to run the tests of a specific directory with cypress?
问题 I am trying to run some specific tests within a directory, using cypress the command that I try to execute is: node_modules\.bin\cypress run --spec 'cypress\integration\tests\default.spec.js' I have also tried with: node_modules\.bin\cypress run --spec 'cypress\integration\tests\*.spec.js' Or: node_modules\.bin\cypress run --spec 'cypress\integration\tests\**' The directory and the files exist, I tried to keep the absolute path to those files but it does not work either. Try changing the