diff options
author | Marcin K <github@anubis.email> | 2022-11-22 22:16:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-22 22:16:00 +0100 |
commit | dc1f9d20f599ca8f9311b779645bc5e53784ca92 (patch) | |
tree | 81a183dbd40eff0ee2ec4c148d058ee8ec689d2a /core/test-api/src/main | |
parent | f6e5bd673f68c7de644c27c7e8e9f9f1080018fb (diff) | |
download | dokka-dc1f9d20f599ca8f9311b779645bc5e53784ca92.tar.gz dokka-dc1f9d20f599ca8f9311b779645bc5e53784ca92.tar.bz2 dokka-dc1f9d20f599ca8f9311b779645bc5e53784ca92.zip |
Fix package and module description truncation in javadoc (#2751)
Diffstat (limited to 'core/test-api/src/main')
-rw-r--r-- | core/test-api/src/main/kotlin/testApi/testRunner/TestRunner.kt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/test-api/src/main/kotlin/testApi/testRunner/TestRunner.kt b/core/test-api/src/main/kotlin/testApi/testRunner/TestRunner.kt index 3a3eae40..31443b2d 100644 --- a/core/test-api/src/main/kotlin/testApi/testRunner/TestRunner.kt +++ b/core/test-api/src/main/kotlin/testApi/testRunner/TestRunner.kt @@ -87,6 +87,9 @@ abstract class AbstractTest<M : TestMethods, T : TestBuilder<M>, D : DokkaTestGe link.copy( localDirectory = testDirPath.toFile().resolve(link.localDirectory).absolutePath ) + }.toSet(), + includes = sourceSet.includes.map { file -> + testDirPath.toFile().resolve(file) }.toSet() ) } |