Skip to content

Commit 702a7e3

Browse files
committed
address pr feedback: remove cleanup after all test
1 parent f12a650 commit 702a7e3

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

dokka-aws/src/test/kotlin/aws/sdk/kotlin/dokka/DokkaAwsTest.kt

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,6 @@ import kotlin.test.assertTrue
1414

1515
@TestInstance(TestInstance.Lifecycle.PER_CLASS)
1616
class DokkaAwsTest {
17-
val dokkaOutputDir = File("build/dokka")
18-
19-
@AfterAll
20-
fun cleanup() {
21-
if (dokkaOutputDir.exists()) {
22-
try {
23-
dokkaOutputDir.deleteRecursively()
24-
println("Successfully deleted dokka folder")
25-
} catch (e: Exception) {
26-
println("Failed to delete dokka folder: ${e.message}")
27-
}
28-
}
29-
}
30-
3117
@Test
3218
fun testLoadScripts() {
3319
val testFile = File("build/dokka/html/index.html")

0 commit comments

Comments
 (0)