Hi,
I have a test that, for certain reasons won't run in certain environments. (For example, in different browsers.)
I'd like these tests to appear as "skipped" and I found this solution on StackOverflow to do so:
http://stackoverflow.com/questions/19075792/unit-tests-for-optional-units/19149003#19149003But this feels kind of inelegant - I guess I'm expecting something like the "assert.inconclusive" feature that .NET has.
Any best practices or plans to support something like this?
Thanks in advance, Marc