Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的测试套件在“描述”中包含几个“它”部分。
如果其中一个“it”部分失败(例如,如果它找不到元素) - 它会直接跳到下一个“it”部分并继续测试。
如果“it”部分失败,我只想让测试停止运行并标记为失败。
你怎么做到这一点?
解决方案是bail在 mochaOpts 部分中使用标志,wdio.conf如下所示:
bail
wdio.conf
mochaOpts: { bail: true },
感谢@leun4m的回答