No issue: fixes test broken by snapshot (#9176)

* No issue: fixes test broken by snapshot

* No issue: ignore flaky tests
fennec/beta
Severin Rudie 4 years ago committed by GitHub
parent 0117de5b8e
commit 3e38b002dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -9,6 +9,7 @@ import androidx.test.uiautomator.UiDevice
import okhttp3.mockwebserver.MockWebServer
import org.junit.After
import org.junit.Before
import org.junit.Ignore
import org.junit.Rule
import org.junit.Test
import org.mozilla.fenix.helpers.AndroidAssetDispatcher
@ -165,6 +166,7 @@ class ReaderViewTest {
}
@Test
@Ignore("Intermittent failure. Fix in https://github.com/mozilla-mobile/fenix/issues/9188")
fun verifyReaderViewAppearanceFontToggle() {
val readerViewPage =
TestAssetHelper.getLoremIpsumAsset(mockWebServer)

@ -141,6 +141,7 @@ class SettingsPrivacyTest {
}
@Test
@Ignore("Passes locally, fails on CI. Fix in https://github.com/mozilla-mobile/fenix/issues/9189")
fun saveLoginFromPromptTest() {
val saveLoginTest =
TestAssetHelper.getSaveLoginAsset(mockWebServer)
@ -166,6 +167,7 @@ class SettingsPrivacyTest {
}
@Test
@Ignore("Passes locally, fails on CI. Fix in https://github.com/mozilla-mobile/fenix/issues/9189")
fun doNotSaveLoginFromPromptTest() {
val saveLoginTest = TestAssetHelper.getSaveLoginAsset(mockWebServer)

@ -24,7 +24,7 @@ class StoreProviderTest {
private class BasicState : State
private val basicStore = Store(BasicState()) { state, _: Action -> state }
private val basicStore = Store(BasicState(), { state, _: Action -> state })
@Test
fun `factory returns store provider`() {

Loading…
Cancel
Save