Add first tests on compose click interaction.

This commit is contained in:
Benoit Marty 2024-01-05 18:00:37 +01:00
parent 00c27ffafc
commit 69e8384163
8 changed files with 305 additions and 1 deletions

View file

@ -22,6 +22,12 @@ plugins {
android {
namespace = "io.element.android.features.logout.impl"
testOptions {
unitTests {
isIncludeAndroidResources = true
}
}
}
anvil {
@ -48,6 +54,9 @@ dependencies {
testImplementation(libs.molecule.runtime)
testImplementation(libs.test.truth)
testImplementation(libs.test.turbine)
testImplementation(libs.test.robolectric)
testImplementation(libs.test.junitext)
testImplementation(libs.androidx.compose.ui.test.junit)
testImplementation(projects.libraries.matrix.test)
testImplementation(projects.libraries.featureflag.test)
testImplementation(projects.tests.testutils)