Updated on 2026-08-14

This commit is contained in:
Tangem 2026-04-17 20:08:45 +04:00
parent 8e6eca1b4c
commit e20956359c
9 changed files with 169 additions and 28 deletions

View file

@ -4,6 +4,10 @@ plugins {
id("configuration")
}
tasks.withType<Test>().configureEach {
useJUnitPlatform()
}
dependencies {
/** DI */
@ -25,4 +29,8 @@ dependencies {
/** For calculating user id hash */
implementation(tangemDeps.card.core)
/** Tests */
testImplementation(projects.test.core)
testRuntimeOnly(deps.test.junit5.engine)
}