about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2023-09-22 17:49:41 -0700
committerGitHub <noreply@github.com>2023-09-22 17:49:41 -0700
commit150fe421d6b694fefd89c0374d0f29051940cc17 (patch)
treeb850947e4837475cf0974ac386eb5810154854fc /src
parent41b53ca37b7eec328e72aabe6bb99b2c6cc367b7 (diff)
downloadvoidsky-150fe421d6b694fefd89c0374d0f29051940cc17.tar.zst
Fixes to tests (#1518)
Diffstat (limited to 'src')
-rw-r--r--src/view/com/testing/TestCtrls.e2e.tsx12
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>
   )
 }