- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在 TeamCity 上运行 Istanbul 尔覆盖范围的测试,并将测试结果报告回“测试”选项卡。我运行以下命令:
node --harmony C:\...\node_modules\istanbul\lib\cli.js cover C:\...\node_modules\mocha\bin\_mocha --reporter mocha-teamcity-reporter --require C:\...\tests_setup.js C:\...\test\**\*Test.js && node --harmony C:\...\istanbul\lib\cli.js report teamcity
我在代码覆盖率选项卡中看到覆盖率结果,但测试选项卡中未显示测试。我的日志中有以下错误:
>> Warning: Could not find any test files matching pattern: mocha-teamcity-reporter
可能出了什么问题?是否可以运行 Istanbul 尔覆盖率进行 Mocha 测试并将测试结果报告给 teamcity 进行测试选项卡?
感谢您的帮助!
最佳答案
参数未传递给 mocha。
https://github.com/gotwarlost/istanbul#the-cover-command
需要添加--
来将参数传递给覆盖的命令
node --harmony C:\...\node_modules\istanbul\lib\cli.js cover \
C:\...\node_modules\mocha\bin\_mocha -- \
--reporter mocha-teamcity-reporter \
--require C:\...\tests_setup.js C:\...\test\**\*Test.js
或者没有全局路径
istanbul cover mocha -- --reporter mocha-teamcity-reporter --require tests_setup.js test/**/*Test.js
关于javascript - Istanbul 尔报道 + mocha + teamcity 记者,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42954748/
我在我的项目中引入了代码覆盖率,但所有值(除了一个)都停留在零。 这是我的 jest-config.json: { "collectCoverageFrom": [ "../shared/
谁能告诉我为什么 JRDesignExpression 的 setValueClass 方法被弃用了?我可以使用其他方法吗? 最佳答案 它已被弃用,因为字段 valueClass 已从其父类(supe
所以我在 Jenkins 中成功运行了 jest 测试。现在我们有一些旧项目对它们的覆盖率为零,我想开始收集更改文件的覆盖率。 这是我的场景,今天我对 100 行代码的覆盖率为 0%,明天我添加 10
对于我的reactjs应用程序,我正在向 View 中添加集成测试,并希望一直关注覆盖范围。我目前正在每次运行时获取所有文件。 问题 在添加测试以增加覆盖范围的同时,如何获得仅显示特定文件夹中文件的笑
我的测试覆盖率非常接近 100%,但我不知道如何覆盖这种条件排序方法。 我正在尝试按对象的三个属性排序:points、goalsDif,然后是 goalsFor。 因此,如果点数更大,则将索引移动 -
我是一名优秀的程序员,十分优秀!