From 9ed9e09e0cbb87b3e8da9c6112c17a996951ab24 Mon Sep 17 00:00:00 2001 From: Kamil Doległo Date: Mon, 15 Apr 2019 15:55:31 +0200 Subject: Mute Kotlin Website format tests --- core/src/test/kotlin/format/KotlinWebSiteHtmlFormatTest.kt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/core/src/test/kotlin/format/KotlinWebSiteHtmlFormatTest.kt b/core/src/test/kotlin/format/KotlinWebSiteHtmlFormatTest.kt index 1901154f..119a567c 100644 --- a/core/src/test/kotlin/format/KotlinWebSiteHtmlFormatTest.kt +++ b/core/src/test/kotlin/format/KotlinWebSiteHtmlFormatTest.kt @@ -1,8 +1,10 @@ package org.jetbrains.dokka.tests import org.jetbrains.dokka.* +import org.junit.Ignore import org.junit.Test +@Ignore abstract class BaseKotlinWebSiteHtmlFormatTest(val analysisPlatform: Platform): FileGeneratorTestCase() { val defaultModelConfig = ModelConfig(analysisPlatform = analysisPlatform) override val formatService = KotlinWebsiteHtmlFormatService(fileGenerator, KotlinLanguageService(), listOf(), EmptyHtmlTemplateService) @@ -110,7 +112,11 @@ abstract class BaseKotlinWebSiteHtmlFormatTest(val analysisPlatform: Platform): } } - +@Ignore class JsKotlinWebSiteHtmlFormatTest: BaseKotlinWebSiteHtmlFormatTest(Platform.js) + +@Ignore class JvmKotlinWebSiteHtmlFormatTest: BaseKotlinWebSiteHtmlFormatTest(Platform.jvm) + +@Ignore class CommonKotlinWebSiteHtmlFormatTest: BaseKotlinWebSiteHtmlFormatTest(Platform.common) \ No newline at end of file -- cgit