Skip to content

Commit

Permalink
build(deps): test runner/rulesが依存ライブラリ定義から漏れていた
Browse files Browse the repository at this point in the history
Signed-off-by: Zenichi Amano <[email protected]>
  • Loading branch information
crow-misia committed Feb 3, 2024
1 parent c498068 commit fd9d6af
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,8 @@ dependencies {
testImplementation(libs.mockk)

androidTestImplementation(libs.kotlinx.coroutines.test)
androidTestImplementation(libs.androidx.test.runner)
androidTestImplementation(libs.androidx.test.rules)
androidTestImplementation(libs.androidx.test.ext.junit.ktx)
androidTestImplementation(libs.androidx.test.ext.truth)
androidTestImplementation(libs.androidx.test.espresso.core)
Expand Down
8 changes: 8 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ androidx-test-ext-truth = "1.6.0-alpha03"

androidx-test-espresso = "3.6.0-alpha03"

androidx-test-runner = "1.6.0-alpha06"

androidx-test-rules = "1.6.0-alpha03"

kotest = "5.8.0"

mockk = "1.13.9"
Expand Down Expand Up @@ -52,6 +56,10 @@ androidx-test-ext-truth = { group = "androidx.test.ext", name = "truth", version

androidx-test-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "androidx-test-espresso" }

androidx-test-runner = { group = "androidx.test", name = "runner", version.ref = "androidx-test-runner" }

androidx-test-rules = { group = "androidx.test", name = "rules", version.ref = "androidx-test-rules" }

kotest-runner-junit5 = { group = "io.kotest", name = "kotest-runner-junit5", version.ref = "kotest" }

kotest-assertions-core = { group = "io.kotest", name = "kotest-assertions-core", version.ref = "kotest" }
Expand Down

0 comments on commit fd9d6af

Please sign in to comment.