We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2408d66 commit f4b677eCopy full SHA for f4b677e
tests/FSharp.Compiler.ComponentTests/CompilerService/AsyncMemoize.fs
@@ -430,7 +430,7 @@ let ``Cancel running jobs with the same key`` () =
430
let current = eventsWhen events (received Requested)
431
Assert.Equal(0, current |> countOf Canceled)
432
433
- waitUntil events (countOf Canceled >> (=) 10)
+ // waitUntil events (countOf Canceled >> (=) 10)
434
435
waitUntil events (received Started)
436
@@ -442,6 +442,7 @@ let ``Cancel running jobs with the same key`` () =
442
443
Assert.Equal(0, events |> countOf Failed)
444
445
+ // All outdated jobs should have been canceled by now.
446
Assert.Equal(10, events |> countOf Canceled)
447
448
Assert.Equal(1, events |> countOf Finished)
0 commit comments