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.
我试图找到一种在 Jenkins 上运行 nodeunit 测试并播下结果的方法。到目前为止,我只发现了如何使用 mocha 和其他框架而不是 nodeunit。有插件或詹金斯或我应该做的事情吗?
谢谢
我想通了。您可以使用以下方法运行测试:
nodeunit test/ --reporter junit --output ./output_dir
然后配置 jenkins 以发布这些 junit xml。