mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-07-17 14:16:15 +00:00
20 lines
589 B
C#
20 lines
589 B
C#
namespace ElectronNET.IntegrationTests.Tests
|
|
{
|
|
using ElectronNET.API;
|
|
using ElectronNET.IntegrationTests.Common;
|
|
|
|
[Collection("ElectronCollection")]
|
|
public class HostHookTests : IntegrationTestBase
|
|
{
|
|
public HostHookTests(ElectronFixture fx) : base(fx)
|
|
{
|
|
}
|
|
|
|
[IntegrationFact(Skip = "Requires HostHook setup; skipping")]
|
|
public async Task HostHook_call_returns_value()
|
|
{
|
|
var result = await Electron.HostHook.CallAsync<string>("create-excel-file", ".");
|
|
result.Should().NotBeNull();
|
|
}
|
|
}
|
|
} |