Skip to content
This repository was archived by the owner on Jun 20, 2023. It is now read-only.

Remove tan tiles from dispatcher screen (DEV) #5692

Merged
merged 2 commits into from
Nov 9, 2022
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
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ import io.mockk.just
import kotlinx.coroutines.flow.flowOf
import org.junit.After
import org.junit.Before
import org.junit.Ignore
import org.junit.Test
import org.junit.runner.RunWith
import testhelpers.BaseUITest
Expand Down Expand Up @@ -89,6 +90,7 @@ class SubmissionDispatcherFragmentTest : BaseUITest() {
.perform(click())
}

@Ignore("Removed tile from UI, not deleting it completely for now")
@Test
fun testEventTeleClicked() {
launchFragmentInContainer<SubmissionDispatcherFragment>(themeResId = R.style.AppTheme_Main)
Expand All @@ -100,6 +102,7 @@ class SubmissionDispatcherFragmentTest : BaseUITest() {
.perform(click())
}

@Ignore("Removed tile from UI, not deleting it completely for now")
@Test
fun testEventTanClicked() {
launchFragmentInContainer<SubmissionDispatcherFragment>(themeResId = R.style.AppTheme_Main)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/spacing_medium"
android:text="@string/submission_dispatcher_already_positive_subheadline"
android:visibility="visible"
android:visibility="gone"
app:layout_constraintEnd_toStartOf="@id/guideline_end"
app:layout_constraintStart_toStartOf="@id/guideline_start"
app:layout_constraintTop_toBottomOf="@id/profile_card"
Expand All @@ -154,7 +154,7 @@
android:layout_marginTop="@dimen/spacing_small"
android:clickable="true"
android:focusable="true"
android:visibility="visible"
android:visibility="gone"
app:body="@string/submission_dispatcher_tan_code_card_text"
app:headline="@string/submission_dispatcher_card_tan_code"
app:illustration="@drawable/ic_submission_illustration_tan_code_card"
Expand All @@ -171,7 +171,7 @@
android:layout_marginBottom="@dimen/spacing_normal"
android:clickable="true"
android:focusable="true"
android:visibility="visible"
android:visibility="gone"
app:body="@string/submission_dispatcher_tan_tele_card_text"
app:headline="@string/submission_dispatcher_card_tan_tele"
app:illustration="@drawable/ic_submission_illustration_tan_hotline_card"
Expand Down