mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-04 05:34:51 +00:00
16 lines
486 B
C#
16 lines
486 B
C#
namespace ElectronNET.IntegrationTests.Tests
|
|
{
|
|
using ElectronNET.API;
|
|
using ElectronNET.IntegrationTests.Common;
|
|
|
|
[Collection("ElectronCollection")]
|
|
public class HostHookTests
|
|
{
|
|
[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();
|
|
}
|
|
}
|
|
} |