Fixes to tests (#1518)

This commit is contained in:
Paul Frazee 2023-09-22 17:49:41 -07:00 committed by GitHub
parent 41b53ca37b
commit 150fe421d6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 24 additions and 8 deletions

View file

@ -41,6 +41,12 @@ export function TestCtrls() {
accessibilityRole="button"
style={BTN}
/>
<Pressable
testID="e2eSignOut"
onPress={() => store.session.logout()}
accessibilityRole="button"
style={BTN}
/>
<Pressable
testID="e2eGotoHome"
onPress={() => navigate('Home')}
@ -71,6 +77,12 @@ export function TestCtrls() {
accessibilityRole="button"
style={BTN}
/>
<Pressable
testID="e2eOpenInviteCodesModal"
onPress={() => store.shell.openModal({name: 'invite-codes'})}
accessibilityRole="button"
style={BTN}
/>
</View>
)
}