reports on Codecatalyst run

0

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

asked a year ago211 views
1 Answer
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.

answered a year ago
  • Let me check the browser issues, thanks

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions