diff --git a/FFMpegCore.Test/FFProbeTests.cs b/FFMpegCore.Test/FFProbeTests.cs index 9329619..7fe928e 100644 --- a/FFMpegCore.Test/FFProbeTests.cs +++ b/FFMpegCore.Test/FFProbeTests.cs @@ -44,7 +44,7 @@ public void Probe_Success() Assert.AreEqual("Main", info.PrimaryVideoStream.Profile); } - [TestMethod] + [TestMethod, Timeout(10000)] public async Task Probe_Async_Success() { var info = await FFProbe.AnalyseAsync(VideoLibrary.LocalVideo.FullName); @@ -59,7 +59,7 @@ public void Probe_Success_FromStream() Assert.AreEqual(3, info.Duration.Seconds); } - [TestMethod] + [TestMethod, Timeout(10000)] public async Task Probe_Success_FromStream_Async() { await using var stream = File.OpenRead(VideoLibrary.LocalVideoWebm.FullName);