Remove Can_set_app_logs_path test

It's pointless because it doesn't ever throw
This commit is contained in:
softworkz
2025-11-14 09:53:01 +01:00
parent 1a964b405e
commit e4485fd483

View File

@@ -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()
{