From e4485fd48355c850438d6f851bf65efdf1ac8e62 Mon Sep 17 00:00:00 2001 From: softworkz Date: Fri, 14 Nov 2025 09:53:01 +0100 Subject: [PATCH] Remove Can_set_app_logs_path test It's pointless because it doesn't ever throw --- src/ElectronNET.IntegrationTests/Tests/AppTests.cs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/ElectronNET.IntegrationTests/Tests/AppTests.cs b/src/ElectronNET.IntegrationTests/Tests/AppTests.cs index 0379de1..895e587 100644 --- a/src/ElectronNET.IntegrationTests/Tests/AppTests.cs +++ b/src/ElectronNET.IntegrationTests/Tests/AppTests.cs @@ -69,14 +69,6 @@ namespace ElectronNET.IntegrationTests.Tests settings.Should().NotBeNull(); } - [Fact(Timeout = 20000)] - public async Task Can_set_app_logs_path() - { - var tempDir = Path.Combine(Path.GetTempPath(), "ElectronLogsTest" + Guid.NewGuid().ToString("N")); - Directory.CreateDirectory(tempDir); - Electron.App.SetAppLogsPath(tempDir); - } - [Fact(Timeout = 20000)] public async Task CommandLine_append_and_query_switch() {