Configure xunit to report long running tests for EndToEnd (#10847)

This commit is contained in:
Roman Konecny 2021-06-08 20:11:19 +02:00 committed by GitHub
parent 7776ec0562
commit 2dcd200fb5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 0 deletions

View file

@ -16,4 +16,10 @@
<ItemGroup>
<ProjectReference Include="..\Microsoft.DotNet.Tools.Tests.Utilities\Microsoft.DotNet.Tools.Tests.Utilities.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="xunit.runner.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>

View file

@ -0,0 +1,6 @@
{
"shadowCopy": false,
"methodDisplay": "method",
"diagnosticMessages": true,
"longRunningTestSeconds": 120
}