我们如何捕获 Jest 的覆盖率失败输出?

How can we capture the coverage failure output from Jest?

我正试图让这些字符串失败 CI,有没有人成功地做到了这一点,如果成功了,怎么做的?

Jest: Coverage for branches (40.15%) does not meet global threshold (50%) Jest: Coverage for lines (66%) does not meet global threshold (75%)

有一个 PR 似乎解决了类似的问题,但是当我 运行 使用此 PR 中的代码时,我无法捕获此输出。

https://github.com/facebook/jest/pull/3554

覆盖率输出将 stderr

试试这个jest --coverage 2> coverage-output.txt