diff options
Diffstat (limited to 'test/src/markdown')
-rw-r--r-- | test/src/markdown/ParserTest.kt | 3 | ||||
-rw-r--r-- | test/src/markdown/Specification.kt | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/test/src/markdown/ParserTest.kt b/test/src/markdown/ParserTest.kt index 80ee7332..50c18f08 100644 --- a/test/src/markdown/ParserTest.kt +++ b/test/src/markdown/ParserTest.kt @@ -3,7 +3,6 @@ package org.jetbrains.dokka.tests import org.junit.Test import org.jetbrains.dokka import org.jetbrains.dokka.toTestString -import org.jetbrains.dokka.toHtml import org.jetbrains.dokka.parseMarkdown import org.junit.Ignore @@ -14,8 +13,6 @@ Ignore public class ParserTest { val markdownTree = parseMarkdown(text) println("AST: ---") println(markdownTree.toTestString()) - println("HTML: ---") - println(markdownTree.toHtml()) println() } diff --git a/test/src/markdown/Specification.kt b/test/src/markdown/Specification.kt index ba1f8363..429317c2 100644 --- a/test/src/markdown/Specification.kt +++ b/test/src/markdown/Specification.kt @@ -6,5 +6,6 @@ import org.jetbrains.dokka.* //[RunWith(javaClass<MarkdownTestRunner>())] class Specification : MarkdownSpecification("test/data/markdown/spec.txt", { - markdownToHtml(it.replace("→", "\t")) +// markdownToHtml(it.replace("→", "\t")) + "" })
\ No newline at end of file |