testFramework [starter]: drop simpleScope

GitOrigin-RevId: 908316241c118fd94bb05b604bc1ac52d2ceee0a
This commit is contained in:
Anastasia Katsman
2026-02-16 22:04:04 +00:00
committed by intellij-monorepo-bot
parent f378bc7b85
commit e4bef9e818
@@ -52,12 +52,6 @@ object CommonScope {
*/
val perClassSupervisorScope = CoroutineScope(SupervisorJob() + Dispatchers.IO + CoroutineName("Test class's supervisor scope"))
/**
* In case of unhandled exception in child coroutines, all the coroutines tree (parents and other branches) will be canceled.
* In most scenarios you don't need that behavior.
*/
val simpleScope = CoroutineScope(Job() + Dispatchers.IO + CoroutineName("Simple scope"))
var scopeForProcesses: CoroutineScope = perClassSupervisorScope
private set