我已经在AWS Amplify中设置了连续部署。我的项目基于Nrwl Angular9。原始文档指出,我的.YML应该包括以下内容。
test:
artifacts:
baseDirectory: cypress
configFilePath: "**/mochawesome.json"
files:
- "**/*.png"
- "**/*.mp4"
phases:
preTest:
commands:
- npm install
- npm install wait-on
- npm install mocha mochawesome mochawesome-merge mochawesome-report-generator
- "npm start & npx wait-on http://127.0.0.1:8080"
test:
commands:
- 'npx cypress run --reporter mochawesome --reporter-options "reportDir=cypress/report/mochawesome-report,overwrite=false,html=false,json=true,timestamp=mmddyyyy_HHMMss"'
postTest:
commands:
- npx mochawesome-merge@4 cypress/report/mochawesome-report/*.json > cypress/report/mochawesome.json
但是,Nrwl使用了单独的E2E项目,该项目使用了基于打字稿的赛普拉斯(Cypress)。这些命令不起作用。 Nrwl的命令是什么?我想要具有相同的功能(聊天功能,报告功能,生成视频等)