From c98ad582908c6889f0264082548ff45d3fdcff2a Mon Sep 17 00:00:00 2001 From: softworkz Date: Sat, 15 Nov 2025 09:05:47 +0100 Subject: [PATCH] Add xunit.runner.json --- .../ElectronNET.IntegrationTests.csproj | 6 ++++++ src/ElectronNET.IntegrationTests/xunit.runner.json | 7 +++++++ 2 files changed, 13 insertions(+) create mode 100644 src/ElectronNET.IntegrationTests/xunit.runner.json diff --git a/src/ElectronNET.IntegrationTests/ElectronNET.IntegrationTests.csproj b/src/ElectronNET.IntegrationTests/ElectronNET.IntegrationTests.csproj index 2bf93ad..c12d1e5 100644 --- a/src/ElectronNET.IntegrationTests/ElectronNET.IntegrationTests.csproj +++ b/src/ElectronNET.IntegrationTests/ElectronNET.IntegrationTests.csproj @@ -37,6 +37,12 @@ false + + + PreserveNewest + + + diff --git a/src/ElectronNET.IntegrationTests/xunit.runner.json b/src/ElectronNET.IntegrationTests/xunit.runner.json new file mode 100644 index 0000000..9283731 --- /dev/null +++ b/src/ElectronNET.IntegrationTests/xunit.runner.json @@ -0,0 +1,7 @@ +{ + "$schema": "https://xunit.net/schema/current/xunit.runner.schema.json", + "methodDisplay": "method", + "diagnosticMessages": true, + "parallelizeTestCollections": false, + "longRunningTestSeconds": 60 +}