Yes, you have to set up Dokka to include *Test (I ...
# dokka
j
Yes, you have to set up Dokka to include *Test (I use *SampleTest) in its samples lookup
👍 1
e
do you know how to do that in dokka 1.4.0-rc?
j
Sorry I haven’t migrated to Dokka 1.4 yet 😞
e
I think I got it:
Copy code
dokkaHtml {
        dokkaSourceSets {
            configureEach {
                samples += "$rootDir/src/test/kotlin/kool/buffers.kt"
            }
        }
    }