作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 typescript 项目,它通过 Jenkins 管道并并行执行所有功能测试(在构建主容器之后)。在管道的末尾 - 我们创建代码覆盖率检查,然后将结果发送到 sonarqube。
这是我的 package.json:
"test": "npm run test:unit && npm run test:component && npm run test:functional",
"test:component": "mocha --reporter mocha-sonarqube-reporter --reporter-options output=tests/coverage/component/test-xcomponent.xml --recursive -r ts-node/register tests/component/*.ts",
"test:functional": "mocha --reporter mocha-sonarqube-reporter --reporter-options output=tests/coverage/functional/test-xfunctional.xml --recursive -r ts-node/register tests/functional/*.ts",
"test:unit": "mocha --reporter mocha-sonarqube-reporter --reporter-options output=tests/coverage/unit/test-xunit.xml --recursive -r ts-node/register tests/unit/*.ts",
"test:unit:nosq": "mocha --recursive -r ts-node/register tests/unit/*.ts",
"lint": "tslint -t verbose --project tsconfig.json -c tslint.json",
"cover": "nyc --report-dir tests/coverage/all npm run test",
"cover:unit": "nyc --report-dir tests/coverage/unit npm run test:unit",
"cover:functional": "nyc --report-dir tests/coverage/functional -x 'app/repositories' -x 'app/entities' -x 'app/utils' --no-clean npm run test:functional"
sonar.exclusions=**/node_modules/**,**/*.spec.ts,app/entities/**,dependency-check-report/*,tests/coverage/**/*
sonar.tests=tests
sonar.test.inclusions=tests/**/*
sonar.ts.tslintconfigpath=tslint.json
sonar.typescript.lcov.reportPaths=tests/coverage/all/lcov.info
nyc merge
进行组合。命令但是输出是 .json 并且 sonarqube 需要 xml。我被我的一半代码覆盖所困,因为我只输出一个文件而不是组合文件。 sonar-project.properties
中排除了该文件夹文件,我也将其包含在 .gitignore 中,但 sonarqube 仍将其报告为代码小。 最佳答案
SonarQube 不需要用于 JavaScript 覆盖的 XML 文件,它要求报告位于 lcov 格式。请参阅 SonarQube 的文档:JavaScript Coverage Results Import .
为了生成此 lcov 报告,您可以执行以下操作:
__coverage__
全局写入的内容)放在一个目录中,默认为 .nyc_output
nyc report --reporter=lcov --report-dir=.nyc_coverage
nyc
您希望使用 --report-dir
指定的目录中的所有文件生成报告。 (在本例中为 .nyc_coverage
)并且您希望报告采用 --reporter
指定的格式( lcov
在这种情况下) nyc
将创建一个文件夹(默认为 .nyc_output
)并在那里写入 lcov 文件 --reporter=text
这样它也会打印出覆盖范围。
nyc report \
--reporter=lcov \
--reporter=text \
--report-dir=.nyc_coverage
=
是可选的,命令参数可以在子命令之前,因此您还可以运行您注意到的命令:
nyc --reporter lcov --reporter text --report-dir .nyc_coverage report
sonar-scanner \
-Dsonar.projectKey=whatever \
-Dsonar.javascript.lcov.reportPaths=coverage/lcov.info
Project -> Administration -> JavaScript -> Tests and Coverage -> LCOV Files
关于node.js - 使用 istabuljs/nyc 合并 Sonarqube 的覆盖范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56755397/
我有一个 typescript 项目,它通过 Jenkins 管道并并行执行所有功能测试(在构建主容器之后)。在管道的末尾 - 我们创建代码覆盖率检查,然后将结果发送到 sonarqube。 这是我的
我是一名优秀的程序员,十分优秀!