Song Gao
Song Gao
I have created one naive TRX reporter: https://github.com/ShuiRuTian/trx-reporter-for-playwright I did not concern much about some edge conditions for now(like what about the attachment only with content, where should we put...
And if possible I want to get some feedback about - how you want to set some variables(like "owner" and "priority"), is the way in the readme good enough or...
@mxschmitt Oops, sorry I totally miss it. It's kind of subtle, although I create this repo indeed for Azure, but in theory it's for TRX. Azure could use TRX to...
@alexneo2003 friendly ping~ It's hard for me to know what really happens for azure reporter, I rarely use the Azure test plan and API directly. So the comparation is unfair,...
@alexneo2003 Thanks a lot for the sharing. Technically, TRX is a file format and usually it's generated by VS test for C#. Here is an [example](https://github.com/picklesdoc/pickles/blob/main/src/Pickles.TestFrameworks.UnitTests/MsTest/results-example-mstest.trx). And just FYI, VS...
@mxschmitt Hi. > would the solution @alexneo2003 is working for you work for your use-case? It would. Although I did not have a try, I am confident that it could...
After digging into code, it feels like server only provide `modifier` and `type` for semantic highlight. So... why regular expression is colored? Did I miss anything?
Oh, it seems this feature is provided by Roslyn and there is extension to this ability in next C# version https://github.com/dotnet/roslyn/issues/59163 But it is still a bit strange for me....
@lo1tuma Sorry, but no. As Ryan said, type guard is not a part of control flow analytics, so type narrowing is not working. Here is a compare: ``` type X...
The reason is `isMatchingReferenceDiscriminant` function return false at the second time. Declared type is no use here. #38839 Add this link, for I meet similar problem in the fix.