Updated on 2026-08-14

This commit is contained in:
Tangem 2025-12-05 10:35:43 +04:00
parent eb96c3be40
commit def92569d3
13 changed files with 196 additions and 73 deletions

View file

@ -12,6 +12,10 @@ android {
namespace = "com.tangem.data.nft"
}
tasks.withType<Test>().configureEach {
useJUnitPlatform()
}
dependencies {
/** Project - Data */
@ -53,4 +57,8 @@ dependencies {
/** DI */
implementation(deps.hilt.android)
kapt(deps.hilt.kapt)
testImplementation(projects.test.core)
testImplementation(projects.common.test)
testRuntimeOnly(deps.test.junit5.engine)
}