Add xunit.runner.json

This commit is contained in:
softworkz
2025-11-15 09:05:47 +01:00
parent a30239e3a6
commit c98ad58290
2 changed files with 13 additions and 0 deletions

View File

@@ -37,6 +37,12 @@
<ParallelizeTestCollections>false</ParallelizeTestCollections>
</PropertyGroup>
<ItemGroup>
<None Update="xunit.runner.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<Import Project="..\ElectronNET\build\ElectronNET.Core.targets" Condition="$(ElectronNetDevMode)" />
</Project>

View File

@@ -0,0 +1,7 @@
{
"$schema": "https://xunit.net/schema/current/xunit.runner.schema.json",
"methodDisplay": "method",
"diagnosticMessages": true,
"parallelizeTestCollections": false,
"longRunningTestSeconds": 60
}