-
Notifications
You must be signed in to change notification settings - Fork 325
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Expand results by default in html log output or make expand button more visible #4197
Comments
Hi @SrS2225a, could you please provide us with more information and maybe some example. It's not clear to me what you want to achieve or even if the issue is on mstest side. |
Hello, sorry about that if I was not very clear. I provided a couple of examples in the imgur link. I thought that would be sufficient enough. Basically, what I want is for the MSTest html file output to show each test case ran but it would hide this data instead, as you can see in the second imgur link. To get it to display, I would have to delete css property |
Let me move the issue to vstest. |
Yes, that is exactly right. The list will not be expanded by default. The only way how is to change the display property that is hiding it as you said |
It looks like this now, expanding it by default would change the behavior for people who want it closed. This is a new feature and won't be implemented, we are focusing on adding new features to Testing.Platform instead. https://aka.ms/testingplatform |
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:
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 doesThe text was updated successfully, but these errors were encountered: