refactor: migrate all tests to kotest

This commit is contained in:
Harsh Shandilya 2022-11-30 01:47:17 +05:30
parent 8eec09e832
commit eba5d64998
No known key found for this signature in database
6 changed files with 125 additions and 144 deletions

View file

@ -37,6 +37,7 @@ class KotlinCommonPlugin : Plugin<Project> {
withType<Test>().configureEach {
maxParallelForks = Runtime.getRuntime().availableProcessors() * 2
testLogging { events(TestLogEvent.PASSED, TestLogEvent.SKIPPED, TestLogEvent.FAILED) }
useJUnitPlatform()
}
}
}