Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix tests

+29 -22
+4 -4
__e2e__/flows/curate-lists.yml
··· 26 26 - tapOn: "Save" 27 27 - assertNotVisible: 28 28 id: "createOrEditListModal" 29 - - tapOn: "About" 29 + - tapOn: "People" 30 30 - assertVisible: "Good Ppl" 31 31 - assertVisible: "They good" 32 32 ··· 93 93 - tapOn: "Save" 94 94 - assertNotVisible: 95 95 id: "createOrEditListModal" 96 - - tapOn: "About" 96 + - tapOn: "People" 97 97 - assertVisible: "Good Ppl" 98 98 - assertVisible: "They good" 99 - - tapOn: "About" 99 + - tapOn: "People" 100 100 101 101 - tapOn: 102 102 label: "Adds users on curatelists from the list" ··· 145 145 id: "e2eGotoLists" 146 146 - tapOn: "Good Ppl" 147 147 148 - - tapOn: "About" 148 + - tapOn: "People" 149 149 - assertVisible: 150 150 label: "Removes users on curatelists from the list" 151 151 id: "user-bob.test"
+8 -16
__e2e__/flows/feed-reorder.yml
··· 11 11 12 12 # Pin alice's feed 13 13 - extendedWaitUntil: 14 - visible: 15 - id: "viewHeaderDrawerBtn" 16 - - tapOn: 17 - id: "viewHeaderDrawerBtn" 14 + visible: "Open drawer menu" 15 + - tapOn: "Open drawer menu" 18 16 - tapOn: 19 17 id: "profileCardButton" 20 18 - tapOn: ··· 32 30 text: "alice-favs" 33 31 34 32 # Set alice-favs first 35 - - tapOn: 36 - id: "viewHeaderDrawerBtn" 33 + - tapOn: "Open drawer menu" 37 34 - tapOn: 38 35 id: "menuItemButton-Feeds" 39 36 - tapOn: ··· 44 41 - tapOn: 45 42 label: "Save button" 46 43 id: "saveChangesBtn" 47 - - tapOn: 48 - id: "viewHeaderDrawerBtn" 44 + - tapOn: "Go back" 49 45 - assertVisible: 50 46 id: "homeScreenFeedTabs-selector-0" 51 47 text: "alice-favs" ··· 54 50 text: "Following" 55 51 56 52 # Set following first 57 - - tapOn: 58 - id: "viewHeaderDrawerBtn" 53 + - tapOn: "Open drawer menu" 59 54 - tapOn: 60 55 id: "menuItemButton-Feeds" 61 56 - tapOn: ··· 66 61 - tapOn: 67 62 label: "Save button" 68 63 id: "saveChangesBtn" 69 - - tapOn: 70 - id: "viewHeaderDrawerBtn" 64 + - tapOn: "Go back" 71 65 - assertVisible: 72 66 id: "homeScreenFeedTabs-selector-0" 73 67 text: "Following" ··· 76 70 text: "alice-favs" 77 71 78 72 # Remove following 79 - - tapOn: 80 - id: "viewHeaderDrawerBtn" 73 + - tapOn: "Open drawer menu" 81 74 - tapOn: 82 75 id: "menuItemButton-Feeds" 83 76 - tapOn: ··· 88 81 - tapOn: 89 82 label: "Save button" 90 83 id: "saveChangesBtn" 91 - - tapOn: 92 - id: "viewHeaderDrawerBtn" 84 + - tapOn: "Go back" 93 85 - assertVisible: 94 86 id: "homeScreenFeedTabs-selector-0" 95 87 text: "alice-favs"
+3 -1
__e2e__/flows/home-screen.yml
··· 27 27 - tapOn: 28 28 id: "bottomBarHomeBtn" 29 29 - tapOn: 30 - id: "viewHeaderDrawerBtn" 30 + id: "bottomBarHomeBtn" 31 + - tapOn: 32 + id: "bottomBarHomeBtn" 31 33 - assertNotVisible: "Feeds ✨" 32 34 33 35 - tapOn:
+1 -1
__e2e__/flows/mod-lists.yml
··· 14 14 id: "e2eGotoModeration" 15 15 - tapOn: 16 16 id: "moderationlistsBtn" 17 - - tapOn: "New" 17 + - tapOn: "New list" 18 18 - tapOn: 19 19 id: "editNameInput" 20 20 - inputText: "Muted Users"
+2
__e2e__/setupApp.yml
··· 6 6 - waitForAnimationToEnd 7 7 - tapOn: "http://localhost:8081" 8 8 - waitForAnimationToEnd 9 + - extendedWaitUntil: 10 + visible: "Continue" 9 11 - swipe: 10 12 from: "Bluesky" 11 13 direction: DOWN
+11
src/lib/notifications/notifications.e2e.ts
··· 1 + export function useNotificationsRegistration() {} 2 + 3 + export function useRequestNotificationsPermission() { 4 + return async ( 5 + _context: 'StartOnboarding' | 'AfterOnboarding' | 'Login' | 'Home', 6 + ) => {} 7 + } 8 + 9 + export async function decrementBadgeCount(_by: number) {} 10 + 11 + export async function resetBadgeCount() {}