Skip to content

Commit

Permalink
log dokka config
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-enko committed Nov 26, 2024
1 parent fe97896 commit f582d0d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class KotlinMultiplatformIT {
val expectedHtml = project.projectDir.resolve("expectedData/html")
val actualHtmlDir = project.projectDir.resolve("build/dokka/html")

println(project.findFiles { it.name == "dokka-configuration.json" }
val dokkaConfigurationJsons = project.findFiles { it.name == "dokka-configuration.json" }
.joinToString("\n\n") {
buildString {
"""
Expand All @@ -56,12 +56,12 @@ class KotlinMultiplatformIT {
""".trimIndent()
}.prependIndent()
}
)

withClue(
"""
expectedHtml: ${expectedHtml.toUri()}
actualHtmlDir: ${actualHtmlDir.toUri()}
dokkaConfigurationJsons: $dokkaConfigurationJsons
""".trimIndent()
) {
val expectedFileTree = expectedHtml.toTreeString()
Expand Down

0 comments on commit f582d0d

Please sign in to comment.