From a43e11e08d57bd898efc72d6db94ed3d4b01f74f Mon Sep 17 00:00:00 2001 From: Ignat Beresnev Date: Mon, 14 Feb 2022 10:48:38 +0300 Subject: Shutdown coroutines dispatchers after each module pass (#2325) * Update kotlinx.coroutines to 1.6.0 * Shutdown common coroutines dispatchers after each module pass * Don't finalize coroutines in unit tests Co-authored-by: Mikhail Zarechenskiy --- .../base/src/test/kotlin/renderers/html/HtmlRenderingOnlyTestBase.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'plugins/base') diff --git a/plugins/base/src/test/kotlin/renderers/html/HtmlRenderingOnlyTestBase.kt b/plugins/base/src/test/kotlin/renderers/html/HtmlRenderingOnlyTestBase.kt index 9b88a170..13892408 100644 --- a/plugins/base/src/test/kotlin/renderers/html/HtmlRenderingOnlyTestBase.kt +++ b/plugins/base/src/test/kotlin/renderers/html/HtmlRenderingOnlyTestBase.kt @@ -43,7 +43,8 @@ abstract class HtmlRenderingOnlyTestBase : RenderingOnlyTestBase() { val files = TestOutputWriter() open val configuration = DokkaConfigurationImpl( - sourceSets = listOf(js, jvm, native) + sourceSets = listOf(js, jvm, native), + finalizeCoroutines = false ) override val context = MockContext( -- cgit