diff --git a/app/components/channel_list/header/__snapshots__/header.test.tsx.snap b/app/components/channel_list/header/__snapshots__/header.test.tsx.snap
index 0cb902360..f07273d48 100644
--- a/app/components/channel_list/header/__snapshots__/header.test.tsx.snap
+++ b/app/components/channel_list/header/__snapshots__/header.test.tsx.snap
@@ -61,6 +61,7 @@ exports[`components/channel_list/header Channel List Header Component should mat
"lineHeight": 36,
}
}
+ testID="channel_list_header.team_display_name"
>
Test!
@@ -127,6 +128,7 @@ exports[`components/channel_list/header Channel List Header Component should mat
"lineHeight": 16,
}
}
+ testID="channel_list_header.server_display_name"
>
diff --git a/app/components/channel_list/header/header.tsx b/app/components/channel_list/header/header.tsx
index 98f899e8f..e11bfc45d 100644
--- a/app/components/channel_list/header/header.tsx
+++ b/app/components/channel_list/header/header.tsx
@@ -116,7 +116,10 @@ const ChannelListHeader = ({canCreateChannels, canJoinChannels, displayName, ico
type='opacity'
>
-
+
{displayName}
@@ -139,7 +142,10 @@ const ChannelListHeader = ({canCreateChannels, canJoinChannels, displayName, ico
}
-
+
{serverDisplayName}
diff --git a/app/components/floating_text_input_label/index.tsx b/app/components/floating_text_input_label/index.tsx
index 71235085a..170ac2d75 100644
--- a/app/components/floating_text_input_label/index.tsx
+++ b/app/components/floating_text_input_label/index.tsx
@@ -106,6 +106,7 @@ type FloatingTextInputProps = TextInputProps & {
onPress?: (e: GestureResponderEvent) => void;
showErrorIcon?: boolean;
theme: Theme;
+ testID?: string;
value: string;
}
@@ -124,6 +125,7 @@ const FloatingTextInput = forwardRef {
const [focusedLabel, setIsFocusLabel] = useState();
@@ -255,6 +257,7 @@ const FloatingTextInput = forwardRef
{Boolean(error) && (
@@ -264,7 +267,12 @@ const FloatingTextInput = forwardRef
}
- {error}
+
+ {error}
+
)}
diff --git a/app/screens/home/account/index.tsx b/app/screens/home/account/index.tsx
index f265f5378..4576878a7 100644
--- a/app/screens/home/account/index.tsx
+++ b/app/screens/home/account/index.tsx
@@ -105,6 +105,7 @@ const AccountScreen = ({currentUser, enableCustomUserStatuses, customStatusExpir
diff --git a/app/screens/home/channel_list/channel_list.tsx b/app/screens/home/channel_list/channel_list.tsx
index d8666ca33..62cc76a71 100644
--- a/app/screens/home/channel_list/channel_list.tsx
+++ b/app/screens/home/channel_list/channel_list.tsx
@@ -83,6 +83,7 @@ const ChannelListScreen = (props: ChannelProps) => {
{canAddOtherServers && }
{() => }
diff --git a/app/screens/login/form.tsx b/app/screens/login/form.tsx
index 8f5ca19b4..4d0eb4455 100644
--- a/app/screens/login/form.tsx
+++ b/app/screens/login/form.tsx
@@ -310,12 +310,14 @@ const LoginForm = ({config, extra, keyboardAwareRef, numberSSOs, serverDisplayNa
);
}
+ const signinButtonTestId = buttonDisabled ? 'login_form.signin.button.disabled' : 'login_form.signin.button';
+
return (