reports on Codecatalyst run

0

On Coverage reports, by clicking the file, I dont see the lines of code covered any more. why?

已提问 1 年前224 查看次数
1 回答
0

There could be several reasons why you are unable to see the lines of code covered in the file when you click on it in the Coverage report. Here are some possible explanations:

The file may not have been included in the test coverage report: It's possible that the file you are trying to view was not included in the test coverage report generated by your testing tool. Make sure that the file is included in the test suite and that the tool is configured to generate coverage reports for all files.

The test coverage report may not be up to date: If you have made changes to the code since the last time you generated the test coverage report, the report may not be up to date. Make sure that you have re-run your tests and generated a new coverage report that includes the latest changes.

The file may not have any covered lines of code: If the file you are trying to view does not contain any covered lines of code, the coverage report may not display any coverage information for that file. Make sure that your test suite includes tests that exercise the code in the file and that the tests are passing.

There may be an issue with the coverage report viewer: It's possible that there is an issue with the coverage report viewer itself. Try clearing your browser cache or using a different browser to see if that resolves the issue.

If none of these solutions work, you may want to check the documentation for your specific testing tool or contact the vendor's support team for assistance.

Thank you.

已回答 1 年前
  • Let me check the browser issues, thanks

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则