diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/view/com/testing/TestCtrls.e2e.tsx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/view/com/testing/TestCtrls.e2e.tsx b/src/view/com/testing/TestCtrls.e2e.tsx index 019c7a508..3f2b2fd00 100644 --- a/src/view/com/testing/TestCtrls.e2e.tsx +++ b/src/view/com/testing/TestCtrls.e2e.tsx @@ -42,6 +42,12 @@ export function TestCtrls() { style={BTN} /> <Pressable + testID="e2eSignOut" + onPress={() => store.session.logout()} + accessibilityRole="button" + style={BTN} + /> + <Pressable testID="e2eGotoHome" onPress={() => navigate('Home')} accessibilityRole="button" @@ -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> ) } |