How do I get test progress or any console output during execution with dotnet test? #3967
-
I'm using the latest stable versions of Microsoft.NET.Test.Sdk, MSTest.TestFramework and MSTest.TestFramework, but the output is just: How can I get the previous behavior of the console logger? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Looks like your project is using the new testing platform and the new dotnet test integration that we are now working to improve. If you are using single project please try using You can also use:
to see passed tests (like before with |
Beta Was this translation helpful? Give feedback.
Looks like your project is using the new testing platform and the new dotnet test integration that we are now working to improve.
If you are using single project please try using
dotnet run
rather thandotnet test
.You can also use:
to see passed tests (like before with
--logger "console;verbosity=detailed"
)