运行我的赛普拉斯测试时,我希望始终返回退出代码0.我在发布部署后运行这些测试,因此当它返回非零退出代码时,测试详细信息不会向发布摘要报告。许多测试运行器都有一个配置选项,可以在出错时失败,所以我正在寻找那个选项。还没有见过这样的东西,所以请指出我的方向。如果它不存在,我将打开一个功能请求。
谢谢!
答案 0 :(得分:2)
试试这个:
// likely want to do this in a support file
// so it's applied to all spec files
// cypress/support/index.js
Cypress.on('uncaught:exception', (err, runnable) => {
// returning false here prevents Cypress from
// failing the test
return false
})