Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
The Tor Project
Applications
fenix
Commits
3e38b002
Unverified
Commit
3e38b002
authored
Mar 16, 2020
by
Severin Rudie
Committed by
GitHub
Mar 16, 2020
Browse files
No issue: fixes test broken by snapshot (#9176)
* No issue: fixes test broken by snapshot * No issue: ignore flaky tests
parent
0117de5b
Changes
3
Hide whitespace changes
Inline
Side-by-side
app/src/androidTest/java/org/mozilla/fenix/ui/ReaderViewTest.kt
View file @
3e38b002
...
...
@@ -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
)
...
...
app/src/androidTest/java/org/mozilla/fenix/ui/SettingsPrivacyTest.kt
View file @
3e38b002
...
...
@@ -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
)
...
...
app/src/test/java/org/mozilla/fenix/components/StoreProviderTest.kt
View file @
3e38b002
...
...
@@ -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`
()
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment