diff options
Diffstat (limited to 'core/test-api/src/main/kotlin/testApi')
-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() ) } |