aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorKamil Doległo <kamilok1965@interia.pl>2019-04-15 15:55:31 +0200
committerKamil Doległo <kamilok1965@interia.pl>2019-04-15 15:55:31 +0200
commit9ed9e09e0cbb87b3e8da9c6112c17a996951ab24 (patch)
tree230d312fc529b1ad1206556e80aa481861a36888 /core
parentccfe1cda844fb839ddfcacecd3e8454bc8ddaa7b (diff)
downloaddokka-9ed9e09e0cbb87b3e8da9c6112c17a996951ab24.tar.gz
dokka-9ed9e09e0cbb87b3e8da9c6112c17a996951ab24.tar.bz2
dokka-9ed9e09e0cbb87b3e8da9c6112c17a996951ab24.zip
Mute Kotlin Website format tests
Diffstat (limited to 'core')
-rw-r--r--core/src/test/kotlin/format/KotlinWebSiteHtmlFormatTest.kt8
1 files changed, 7 insertions, 1 deletions
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