Today, we’re shipping three new releases:
It’s been 1 month since the release of 2.8.0 RTM.
As always, we’d like to thank all the users who contributed to the success of xUnit.net through usage, feedback, and code contributions. 🎉
These release notes are a comprehensive list of changes from 2.8.0 to 2.8.1.
We have added the ability to show output from ITestOutputHelper
immediately while a test is running rather than waiting for the test to complete. (Note: This can add significant noise to the output while running tests, so we recommend you only temporarily enable this when attempting to track down an issue with a misbehaving test that never finishes/takes a long time to finish.)
showLiveOutput
configuration itemShowLiveOutput
RunSettings itemNote that dotnet test
usually hides all output from xUnit.net unless you add the --logger "console;verbosity=normal"
switch. To see output when running tests in Visual Studio Test Explorer, check the Output window’s “Tests” tab. Screenshots are shown in the linked issue. xunit/visualstudio.xunit#408