Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Fix e2e

+15 -5
+3 -1
__e2e__/tests/home-screen.test.ts
··· 57 57 .tap() 58 58 await element(by.id('postDropdownReportBtn')).tap() 59 59 await expect(element(by.id('reportPostModal'))).toBeVisible() 60 - await element(by.id('reportPostRadios-spam')).tap() 60 + await element( 61 + by.id('reportPostRadios-com.atproto.moderation.defs#reasonSpam'), 62 + ).tap() 61 63 await element(by.id('sendReportBtn')).tap() 62 64 await expect(element(by.id('reportPostModal'))).not.toBeVisible() 63 65 })
+6 -2
__e2e__/tests/profile-screen.test.ts
··· 120 120 await element(by.id('profileHeaderDropdownBtn')).tap() 121 121 await element(by.id('profileHeaderDropdownReportBtn')).tap() 122 122 await expect(element(by.id('reportAccountModal'))).toBeVisible() 123 - await element(by.id('reportAccountRadios-spam')).tap() 123 + await element( 124 + by.id('reportAccountRadios-com.atproto.moderation.defs#reasonSpam'), 125 + ).tap() 124 126 await element(by.id('sendReportBtn')).tap() 125 127 await expect(element(by.id('reportAccountModal'))).not.toBeVisible() 126 128 }) ··· 166 168 await element(by.id('postDropdownBtn').withAncestor(posts)).atIndex(0).tap() 167 169 await element(by.id('postDropdownReportBtn')).tap() 168 170 await expect(element(by.id('reportPostModal'))).toBeVisible() 169 - await element(by.id('reportPostRadios-spam')).tap() 171 + await element( 172 + by.id('reportPostRadios-com.atproto.moderation.defs#reasonSpam'), 173 + ).tap() 170 174 await element(by.id('sendReportBtn')).tap() 171 175 await expect(element(by.id('reportPostModal'))).not.toBeVisible() 172 176 })
+6 -2
__e2e__/tests/thread-screen.test.ts
··· 106 106 await element(by.id('postDropdownBtn').withAncestor(post)).atIndex(0).tap() 107 107 await element(by.id('postDropdownReportBtn')).tap() 108 108 await expect(element(by.id('reportPostModal'))).toBeVisible() 109 - await element(by.id('reportPostRadios-spam')).tap() 109 + await element( 110 + by.id('reportPostRadios-com.atproto.moderation.defs#reasonSpam'), 111 + ).tap() 110 112 await element(by.id('sendReportBtn')).tap() 111 113 await expect(element(by.id('reportPostModal'))).not.toBeVisible() 112 114 }) ··· 116 118 await element(by.id('postDropdownBtn').withAncestor(post)).atIndex(0).tap() 117 119 await element(by.id('postDropdownReportBtn')).tap() 118 120 await expect(element(by.id('reportPostModal'))).toBeVisible() 119 - await element(by.id('reportPostRadios-spam')).tap() 121 + await element( 122 + by.id('reportPostRadios-com.atproto.moderation.defs#reasonSpam'), 123 + ).tap() 120 124 await element(by.id('sendReportBtn')).tap() 121 125 await expect(element(by.id('reportPostModal'))).not.toBeVisible() 122 126 })