Updated on 2026-08-14

This commit is contained in:
Tangem 2026-04-30 09:22:33 +01:00
parent 4613836a1b
commit 6a82ee1600
7 changed files with 1715 additions and 2 deletions

View file

@ -11,6 +11,10 @@ android {
namespace = "com.tangem.features.details.impl"
}
tasks.withType<Test>().configureEach {
useJUnitPlatform()
}
dependencies {
/* Project - API */
@ -80,4 +84,11 @@ dependencies {
implementation(deps.kotlin.immutable.collections)
implementation(deps.arrow.core)
implementation(deps.arrow.fx)
/* Test */
testImplementation(deps.test.junit5)
testRuntimeOnly(deps.test.junit5.engine)
testImplementation(deps.test.mockk)
testImplementation(deps.test.truth)
testImplementation(deps.test.coroutine)
}