Skip to content

Commit

Permalink
Enable logging in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Chelombitko committed Dec 30, 2024
1 parent c958f8a commit c559e2c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 1 deletion.
3 changes: 3 additions & 0 deletions core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ dependencies {
api(libs.koin.core)

testImplementation(project(":vendor:vendor-test"))
testImplementation(libs.slf4j.simple)

integrationTestImplementation(libs.slf4j.simple)

testFixturesImplementation(libs.ktor.client.core)
}
Expand Down
3 changes: 2 additions & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ kotlinx-coroutines = "1.9.0"
ktor = "2.3.13"
marathon = "0.5.4"
mockito = "5.4.0"
slf4j = "1.7.36"
slf4j = "2.0.16"
spek = "1.1.5"
testcontainers = "1.15.3"

Expand Down Expand Up @@ -58,6 +58,7 @@ ktor-client-apache = { module = "io.ktor:ktor-client-apache" }
ktor-client-mock = { module = "io.ktor:ktor-client-mock" }
mockito-kotlin = { module = "org.mockito.kotlin:mockito-kotlin", version.ref = "mockito" }
slf4j-api = { module = "org.slf4j:slf4j-api", version.ref = "slf4j" }
slf4j-simple = { module = "org.slf4j:slf4j-simple", version.ref = "slf4j" }
spek-api = { module = "org.jetbrains.spek:spek-api", version.ref = "spek" }
spek-engine = { module = "org.jetbrains.spek:spek-junit-platform-engine", version.ref = "spek" }
testcontainers = { module = "org.testcontainers:testcontainers", version.ref = "testcontainers" }
2 changes: 2 additions & 0 deletions vendor/vendor-android/base/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,6 @@ dependencies {
implementation(libs.imgscalr)
implementation(libs.jackson.annotations)
implementation(libs.kotlinx.coroutines.core)

testImplementation(libs.slf4j.simple)
}
1 change: 1 addition & 0 deletions vendor/vendor-android/ddmlib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@ dependencies {
implementation(libs.slf4j.api)

testImplementation(project(":vendor:vendor-test"))
testImplementation(libs.slf4j.simple)
}

0 comments on commit c559e2c

Please sign in to comment.