Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Fix to tests

+5 -5
+5 -5
__e2e__/tests/mute-lists.test.ts
··· 2 2 3 3 import {openApp, login, createServer, sleep} from '../util' 4 4 5 - describe('Profile screen', () => { 5 + describe('Mute lists', () => { 6 6 let service: string 7 7 beforeAll(async () => { 8 8 service = await createServer('?users&follows&labels') ··· 65 65 await element(by.id('editListBtn')).tap() 66 66 await expect(element(by.id('createOrEditMuteListModal'))).toBeVisible() 67 67 await element(by.id('changeAvatarBtn')).tap() 68 - await element(by.id('changeAvatarLibraryBtn')).tap() 68 + await element(by.text('Library')).tap() 69 69 await sleep(3e3) 70 70 await element(by.id('saveBtn')).tap() 71 71 await expect(element(by.id('createOrEditMuteListModal'))).not.toBeVisible() ··· 81 81 await element(by.id('editListBtn')).tap() 82 82 await expect(element(by.id('createOrEditMuteListModal'))).toBeVisible() 83 83 await element(by.id('changeAvatarBtn')).tap() 84 - await element(by.id('changeAvatarRemoveBtn')).tap() 84 + await element(by.text('Remove')).tap() 85 85 await element(by.id('saveBtn')).tap() 86 86 await expect(element(by.id('createOrEditMuteListModal'))).not.toBeVisible() 87 87 await expect(element(by.id('userAvatarFallback'))).toExist() ··· 125 125 await expect(element(by.id('profileView'))).toBeVisible() 126 126 127 127 await element(by.id('profileHeaderDropdownBtn')).tap() 128 - await element(by.id('profileHeaderDropdownListAddRemoveBtn')).tap() 128 + await element(by.text('Add to Lists')).tap() 129 129 await expect(element(by.id('listAddRemoveUserModal'))).toBeVisible() 130 130 await element(by.id('toggleBtn-Bad Ppl')).tap() 131 131 await element(by.id('saveBtn')).tap() 132 132 await expect(element(by.id('listAddRemoveUserModal'))).not.toBeVisible() 133 133 134 134 await element(by.id('profileHeaderDropdownBtn')).tap() 135 - await element(by.id('profileHeaderDropdownListAddRemoveBtn')).tap() 135 + await element(by.text('Add to Lists')).tap() 136 136 await expect(element(by.id('listAddRemoveUserModal'))).toBeVisible() 137 137 await element(by.id('toggleBtn-Bad Ppl')).tap() 138 138 await element(by.id('saveBtn')).tap()