diff options
Diffstat (limited to 'src/view/screens/Contacts.tsx')
-rw-r--r-- | src/view/screens/Contacts.tsx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/view/screens/Contacts.tsx b/src/view/screens/Contacts.tsx index 8de56d79a..b22e52fe5 100644 --- a/src/view/screens/Contacts.tsx +++ b/src/view/screens/Contacts.tsx @@ -25,7 +25,9 @@ export const Contacts = ({navIdx, visible, params}: ScreenParams) => { return ( <View> <View style={styles.section}> - <Text style={styles.title}>Contacts</Text> + <Text testID="contactsTitle" style={styles.title}> + Contacts + </Text> </View> <View style={styles.section}> <View style={styles.searchContainer}> @@ -35,6 +37,7 @@ export const Contacts = ({navIdx, visible, params}: ScreenParams) => { style={styles.searchIcon} /> <TextInput + testID="contactsTextInput" ref={inputRef} value={searchText} style={styles.searchInput} |