Make your Xunit test methods self-determine to report a "skipped" result. Useful for such cases as "not supported on this platform" results or other environmental inputs.
$ dotnet add package Xunit.SkippableFactThis library allows for Xunit tests that can determine during execution that they should report a "skipped" result. This can be useful when a precondition is not satisfied, or the test is over functionality that does not exist on the platform being tested.
Use [SkippableFact] or [SkippableTheory] to make a test skippable.