Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Test fixes

+9 -4
+3 -1
__e2e__/tests/mute-lists.test.ts
··· 114 114 115 115 it('Shows the mutelist on my profile', async () => { 116 116 await element(by.id('bottomBarProfileBtn')).tap() 117 - await element(by.id('selector-3')).tap() 117 + await element(by.id('selector')).swipe('left') 118 + await element(by.id('selector-4')).tap() 118 119 await element(by.id('list-Bad Ppl')).tap() 119 120 }) 120 121 ··· 156 157 await element(by.id('bottomBarSearchBtn')).tap() 157 158 await element(by.id('searchTextInput')).typeText('alice') 158 159 await element(by.id('searchAutoCompleteResult-alice.test')).tap() 160 + await element(by.id('selector')).swipe('left') 159 161 await element(by.id('selector-3')).tap() 160 162 await element(by.id('list-Bad Ppl')).tap() 161 163 await element(by.id('reportListBtn')).tap()
+3 -1
__e2e__/tests/profile-screen.test.ts
··· 18 18 }) 19 19 20 20 it('Can see feeds', async () => { 21 - await element(by.id('selector-3')).tap() 21 + await element(by.id('selector')).swipe('left') 22 + await element(by.id('selector-4')).tap() 22 23 await expect(element(by.id('feed-alices feed'))).toBeVisible() 24 + await element(by.id('selector')).swipe('right') 23 25 await element(by.id('selector-0')).tap() 24 26 }) 25 27
+1 -1
__e2e__/tests/self-labeling.test.ts
··· 20 20 await element(by.id('composeFAB')).tap() 21 21 await element(by.id('composerTextInput')).typeText('Post with an image') 22 22 await element(by.id('openGalleryBtn')).tap() 23 - await sleep(1e3) 23 + await sleep(3e3) 24 24 await element(by.id('labelsBtn')).tap() 25 25 await element(by.id('pornLabelBtn')).tap() 26 26 await element(by.id('confirmBtn')).tap()
+1
src/view/com/util/ViewSelector.tsx
··· 168 168 backgroundColor: pal.colors.background, 169 169 }}> 170 170 <ScrollView 171 + testID="selector" 171 172 horizontal 172 173 showsHorizontalScrollIndicator={false} 173 174 style={{position: 'absolute'}}>
+1 -1
src/view/screens/ProfileList.tsx
··· 74 74 store.shell.openModal({ 75 75 name: 'confirm', 76 76 title: 'Delete List', 77 - message: 'Are you sure', 77 + message: 'Are you sure?', 78 78 async onPressConfirm() { 79 79 await list.delete() 80 80 if (navigation.canGoBack()) {