我已将cypress版本从3.1.3更新到3.1.4,此后,当我运行npm run cypress:open命令时,它会抛出错误“ cypress”未被识别为内部或外部命令,可运行的程序或批处理文件。npm ERR!代码ELIFECYCLE npm ERR!errno 1 npm ERR!xxxxx@1.0.0 cypress:open:cypress open --env aaa=test
npm ERR!退出状态1”
任何建议,如何解决此问题?
答案 0 :(得分:0)
如果您在项目中本地安装了 cypress,则需要从 node_modules/.bin
运行您的命令,例如 ./node_modules/.bin/cypress run
如果您想运行 cypress run
或只运行 npx cypress run
做同样的事情