From 629759b72b077ebc788f8dda5308dacb12e5e825 Mon Sep 17 00:00:00 2001 From: Josep Prat Date: Mon, 2 Nov 2020 09:23:50 +0100 Subject: [PATCH] Add limitation about supervision in sync Testkit #29767 (#29778) Refs: #29767 Currently, sync Testkit doesn't support supervision as it often involves async interactions. --- akka-docs/src/main/paradox/typed/testing-sync.md | 1 + 1 file changed, 1 insertion(+) diff --git a/akka-docs/src/main/paradox/typed/testing-sync.md b/akka-docs/src/main/paradox/typed/testing-sync.md index f5459fcfe3..f2808548d9 100644 --- a/akka-docs/src/main/paradox/typed/testing-sync.md +++ b/akka-docs/src/main/paradox/typed/testing-sync.md @@ -15,6 +15,7 @@ limitations: * `EventSourcedBehavior` can't be tested. * Interactions with other actors must be stubbed. * Blackbox testing style. +* Supervision is not supported. The `BehaviorTestKit` will be improved and some of these problems will be removed but it will always have limitations.