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 --- plugins/gfm/src/test/kotlin/renderers/gfm/GfmRenderingOnlyTestBase.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/gfm/src/test/kotlin') diff --git a/plugins/gfm/src/test/kotlin/renderers/gfm/GfmRenderingOnlyTestBase.kt b/plugins/gfm/src/test/kotlin/renderers/gfm/GfmRenderingOnlyTestBase.kt index 1fa78423..46348849 100644 --- a/plugins/gfm/src/test/kotlin/renderers/gfm/GfmRenderingOnlyTestBase.kt +++ b/plugins/gfm/src/test/kotlin/renderers/gfm/GfmRenderingOnlyTestBase.kt @@ -21,7 +21,7 @@ abstract class GfmRenderingOnlyTestBase : RenderingOnlyTestBase() { DokkaBase().externalLocationProviderFactory to ::DefaultExternalLocationProviderFactory, GfmPlugin().gfmPreprocessors to { RootCreator }, - testConfiguration = DokkaConfigurationImpl(moduleName = "root") + testConfiguration = DokkaConfigurationImpl(moduleName = "root", finalizeCoroutines = false) ) override val renderedContent: String by lazy { -- cgit