Skip to content

Commit a6c688d

Browse files
committed
Fixed buildHealth by adding Kotest Framework Engine dependency.
1 parent fdb368f commit a6c688d

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

gradle/libs.versions.toml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -103,20 +103,19 @@ version.ref = "kotlinpoet"
103103
module = "com.squareup:kotlinpoet-ksp"
104104
version.ref = "kotlinpoet"
105105

106-
[libraries.kotest-assertions-shared]
107-
module = "io.kotest:kotest-assertions-shared"
108-
version.ref = "kotest"
109-
110-
[libraries.kotest-bom]
111-
module = "io.kotest:kotest-bom"
112-
version.ref = "kotest"
113-
114106
[libraries.kotest-assertions-core-jvm]
115107
module = "io.kotest:kotest-assertions-core-jvm"
116108

117109
[libraries.kotest-assertions-table-jvm]
118110
module = "io.kotest:kotest-assertions-table-jvm"
119111

112+
[libraries.kotest-bom]
113+
module = "io.kotest:kotest-bom"
114+
version.ref = "kotest"
115+
116+
[libraries.kotest-framework-engine]
117+
module = "io.kotest:kotest-framework-engine"
118+
120119
[libraries.kotest-runner-junit5]
121120
module = "io.kotest:kotest-runner-junit5"
122121

subprojects/tdd-in-kotlin/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ dependencies {
1515

1616
testImplementation(libs.kotest.assertions.core.jvm)
1717
testImplementation(libs.kotest.assertions.table.jvm)
18+
testImplementation(libs.kotest.framework.engine)
1819
testImplementation(libs.kotest.runner.junit5)
1920
testImplementation(libs.mockk)
2021

0 commit comments

Comments
 (0)