Description
Describe the bug
So I am using the MSTest for framework for visual studio 2022 to run a few tests for QA. I want the data in a html format to easily keep track of the tests. It would show the failed test results just fine, but I want it to show which tests were ran as well, which are not displayed.
I found that the data I want is there in the html file, but for some reason MSTest would hide that data by default. How can I get MSTest to show this data? This is what it shows and what I actually want: https://imgur.com/a/LCW3zyR
Steps To Reproduce
Provide the steps to reproduce the behavior:
- Enable html logging in your .runsettings file https://learn.microsoft.com/en-us/visualstudio/test/configure-unit-tests-by-using-a-dot-runsettings-file?view=vs-2022#loggerrunsettings-element
- In the test explorer, click on "Run all tests"
- Open the saved html file in the root of the project under the folder "TestResults"
- No data will be displayed showing each test result
Expected behavior
MSTest shows each test ran
Actual behavior
MSTest instead would hide this data
Additional context
MSTest hides this data by adding a css property display: none
to the div that holds each test ran. It should not add such a property but it does