From 3a03a3df08951fd474b044b711c5f6f0750e1aab Mon Sep 17 00:00:00 2001 From: pavelsavara Date: Tue, 20 May 2025 09:03:20 +0200 Subject: [PATCH] ActiveIssue --- .../System/Runtime/InteropServices/JavaScript/TimerTests.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libraries/System.Runtime.InteropServices.JavaScript/tests/System.Runtime.InteropServices.JavaScript.UnitTests/System/Runtime/InteropServices/JavaScript/TimerTests.cs b/src/libraries/System.Runtime.InteropServices.JavaScript/tests/System.Runtime.InteropServices.JavaScript.UnitTests/System/Runtime/InteropServices/JavaScript/TimerTests.cs index 5f05887854207d..f862bf5a4b043e 100644 --- a/src/libraries/System.Runtime.InteropServices.JavaScript/tests/System.Runtime.InteropServices.JavaScript.UnitTests/System/Runtime/InteropServices/JavaScript/TimerTests.cs +++ b/src/libraries/System.Runtime.InteropServices.JavaScript/tests/System.Runtime.InteropServices.JavaScript.UnitTests/System/Runtime/InteropServices/JavaScript/TimerTests.cs @@ -22,6 +22,7 @@ public static IEnumerable TestCases() yield return new object[] { new[] { 800, 600, 400, 200, 100 }, 5, 13, 9 }; } + [ActiveIssue("https://github.com/dotnet/runtime/issues/115763")] [MemberData(nameof(TestCases))] [ConditionalTheory(typeof(PlatformDetection), nameof(PlatformDetection.IsNotWasmThreadingSupported))] // this test only makes sense with ST TimerQueue public async Task TestTimers(int[] timeouts, int? expectedSetCounter, int? expectedSetCounterAfterCleanUp, int? expectedHitCount)