Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions FlowCrypt/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ dependencies {
androidTestImplementation("androidx.test.uiautomator:uiautomator:2.3.0")
androidTestImplementation("androidx.room:room-testing:2.8.4")
androidTestImplementation("androidx.arch.core:core-testing:2.2.0")
androidTestImplementation("androidx.work:work-testing:2.11.0")
androidTestImplementation("androidx.work:work-testing:2.11.2")
androidTestImplementation("com.squareup.okhttp3:mockwebserver:5.3.2")
androidTestImplementation("com.squareup.okhttp3:okhttp-tls:5.3.2")
androidTestImplementation("com.athaydes.rawhttp:rawhttp-core:2.6.0")
Expand Down Expand Up @@ -506,7 +506,7 @@ dependencies {
implementation("androidx.core:core-splashscreen:1.2.0")
implementation("androidx.activity:activity-ktx:1.12.2")
implementation("androidx.fragment:fragment-ktx:1.8.9")
implementation("androidx.work:work-runtime-ktx:2.11.0")
implementation("androidx.work:work-runtime-ktx:2.11.2")
implementation("androidx.navigation:navigation-fragment-ktx:2.9.6")
implementation("androidx.navigation:navigation-ui-ktx:2.9.6")
implementation("androidx.navigation:navigation-runtime-ktx:2.9.6")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ import com.flowcrypt.email.util.AuthCredentialsManager
import com.flowcrypt.email.util.TestGeneralUtil
import org.hamcrest.Matchers.anyOf
import org.hamcrest.Matchers.startsWith
import org.junit.Ignore
import org.junit.Rule
import org.junit.Test
import org.junit.rules.RuleChain
Expand Down Expand Up @@ -61,6 +62,7 @@ class AddOtherAccountFlowTest : AddOtherAccountBaseTest() {
@Test
//@Ignore("flaky 8")
//RepeatableAndroidJUnit4ClassRunner 50 attempts passed
@Ignore("flaky. Temporary disabled")

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It works locally on my PC. It will be fixed via #3211

fun testShowWarningIfAuthFail() {
enableAdvancedMode()
val credentials = AuthCredentialsManager.getAuthCredentials("user_with_not_existed_server.json")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ class ComposeScreenFlowTest : BaseComposeScreenTest() {
}

@Test
@Ignore("flaky. Temporary disabled")

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It works locally on my PC. It will be fixed via #3211

fun testEmptyEmailSubject() {
activeActivityRule?.launch(intent)
waitForObjectWithText(
Expand Down
Loading