We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f662690 commit 97e61d1Copy full SHA for 97e61d1
core/src/main/kotlin/com/tschuchort/compiletesting/KotlinJsCompilation.kt
@@ -78,7 +78,7 @@ class KotlinJsCompilation : AbstractKotlinCompilation<K2JSCompilerArguments>() {
78
/**
79
* Compiled class and resource files that are the final result of the compilation.
80
*/
81
- val compiledClassAndResourceFiles: List<File> = outputDirectory.listFilesRecursively()
+ val compiledClassAndResourceFiles: List<File> = outputDirectory.also { println("Checking output directory ${it.path}") }.listFilesRecursively()
82
}
83
84
0 commit comments