<legend id='NZ1cu'><style id='NZ1cu'><dir id='NZ1cu'><q id='NZ1cu'></q></dir></style></legend>
    <bdo id='NZ1cu'></bdo><ul id='NZ1cu'></ul>
<tfoot id='NZ1cu'></tfoot>
    1. <small id='NZ1cu'></small><noframes id='NZ1cu'>

    2. <i id='NZ1cu'><tr id='NZ1cu'><dt id='NZ1cu'><q id='NZ1cu'><span id='NZ1cu'><b id='NZ1cu'><form id='NZ1cu'><ins id='NZ1cu'></ins><ul id='NZ1cu'></ul><sub id='NZ1cu'></sub></form><legend id='NZ1cu'></legend><bdo id='NZ1cu'><pre id='NZ1cu'><center id='NZ1cu'></center></pre></bdo></b><th id='NZ1cu'></th></span></q></dt></tr></i><div id='NZ1cu'><tfoot id='NZ1cu'></tfoot><dl id='NZ1cu'><fieldset id='NZ1cu'></fieldset></dl></div>

        如何告诉 Sonar 使用我的万无一失的报告来获取单元测试结果

        How to tell Sonar to use my surefire reports for unit test results(如何告诉 Sonar 使用我的万无一失的报告来获取单元测试结果)

            • <bdo id='s2C8T'></bdo><ul id='s2C8T'></ul>
              <tfoot id='s2C8T'></tfoot>
                <tbody id='s2C8T'></tbody>

              <small id='s2C8T'></small><noframes id='s2C8T'>

              • <legend id='s2C8T'><style id='s2C8T'><dir id='s2C8T'><q id='s2C8T'></q></dir></style></legend>

                • <i id='s2C8T'><tr id='s2C8T'><dt id='s2C8T'><q id='s2C8T'><span id='s2C8T'><b id='s2C8T'><form id='s2C8T'><ins id='s2C8T'></ins><ul id='s2C8T'></ul><sub id='s2C8T'></sub></form><legend id='s2C8T'></legend><bdo id='s2C8T'><pre id='s2C8T'><center id='s2C8T'></center></pre></bdo></b><th id='s2C8T'></th></span></q></dt></tr></i><div id='s2C8T'><tfoot id='s2C8T'></tfoot><dl id='s2C8T'><fieldset id='s2C8T'></fieldset></dl></div>
                  本文介绍了如何告诉 Sonar 使用我的万无一失的报告来获取单元测试结果的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我们有一个 Jenkins 作业,其中包含一堆 javascript 文件.我们通过 grunt 构建我们的项目,并在构建结束时运行 JSCover 来运行我们的单元测试并收集代码覆盖率.这一切都有效.我们得到了一个不错的 LCOV 文件,我们在 target/surefire-reports/目录中得到了一堆 TEST-*.xml.

                  We have a Jenkins job that contains a bunch of javascript files. We build our project via grunt, and at the end of the build we run JSCover to run our unit tests and collect code coverage. It all works. We get a nice LCOV file, and we get a bunch of TEST-*.xml in the target/surefire-reports/ directory.

                  Sonar 显示代码覆盖率结果,但不显示通过/失败甚至执行的测试数量.

                  Sonar displays the code coverage results, but it doesn't show the number of tests that passed/failed or even executed.

                  如何让声纳使用万无一失的报告?我以为通过设置这个属性,它会消耗它,但没有爱:

                  How do I tell sonar to use the surefire reports? I thought by setting this property, it would consume it, but no love:

                  sonar.surefire.reportsPath=target/surefire-reports
                  

                  这是我的项目属性文件:

                  Here is my project properties file:

                  # project metadata (required)
                  sonar.projectKey=pure.cloud.browser.app
                  sonar.projectName=Pure Cloud Browser App
                  sonar.projectVersion=1.0
                  # path to source directories (required)
                  sonar.sources=src
                  sonar.exclusions=js/lib/**,js/test/lib/**,js/test/tools/**
                  # The value of the property must be the key of the language.
                  sonar.language=js
                  
                  # Advanced parameters
                  sonar.surefire.reportsPath=target/surefire-reports
                  sonar.javascript.lcov.reportPath=target/test-coverage/jscover.lcov
                  sonar.dynamicAnalysis=reuseReports
                  

                  感谢 Fabrice 在我上一个问题中向我推荐以下链接:https://github.com/SonarSource/sonar-examples/tree/master/projects/languages/javascript/javascript-sonar-runner-JsTestDriver 但我找不到方法告诉 Sonar 以某种方式显示单元测试结果(测试数,失败次数等)存储在surefire-reports目录中.

                  Thank you, Fabrice, for recommending me the following link in my previous question: https://github.com/SonarSource/sonar-examples/tree/master/projects/languages/javascript/javascript-sonar-runner-JsTestDriver but I can't find a way to tell Sonar to somehow display the unit test results (number of tests, number of failures, etc) that are stored in the surefire-reports directory.

                  有什么想法吗?

                  推荐答案

                  在 Sonar Javascript 1.3 中,sonar.surefire.reportsPath"已替换为sonar.javascript.jstestdriver.reportsPath".

                  With Sonar Javascript 1.3, "sonar.surefire.reportsPath" has been replaced by "sonar.javascript.jstestdriver.reportsPath".

                  这篇关于如何告诉 Sonar 使用我的万无一失的报告来获取单元测试结果的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  quot;Status Code:200 OK (from ServiceWorker)quot; in Chrome Network DevTools?(“状态码:200 OK(来自 ServiceWorker)在 Chrome 网络开发工具中?)
                  How to set a header for a HTTP GET request, and trigger file download?(如何为 HTTP GET 请求设置标头并触发文件下载?)
                  Adding custom HTTP headers using JavaScript(使用 JavaScript 添加自定义 HTTP 标头)
                  SQL Query DocumentDB in Azure Functions by an integer not working(通过整数在 Azure Functions 中 SQL 查询 DocumentDB 不起作用)
                  Azure Functions [JavaScript / Node.js] - HTTP call, good practices(Azure Functions [JavaScript/Node.js] - HTTP 调用,良好实践)
                  Azure Functions - Import Custom Node Module(Azure Functions - 导入自定义节点模块)

                      <tfoot id='oAnXi'></tfoot>

                      <small id='oAnXi'></small><noframes id='oAnXi'>

                          <legend id='oAnXi'><style id='oAnXi'><dir id='oAnXi'><q id='oAnXi'></q></dir></style></legend>
                            <tbody id='oAnXi'></tbody>
                          <i id='oAnXi'><tr id='oAnXi'><dt id='oAnXi'><q id='oAnXi'><span id='oAnXi'><b id='oAnXi'><form id='oAnXi'><ins id='oAnXi'></ins><ul id='oAnXi'></ul><sub id='oAnXi'></sub></form><legend id='oAnXi'></legend><bdo id='oAnXi'><pre id='oAnXi'><center id='oAnXi'></center></pre></bdo></b><th id='oAnXi'></th></span></q></dt></tr></i><div id='oAnXi'><tfoot id='oAnXi'></tfoot><dl id='oAnXi'><fieldset id='oAnXi'></fieldset></dl></div>

                            <bdo id='oAnXi'></bdo><ul id='oAnXi'></ul>