diff --git a/webapp/components/features/FollowList/FollowList.spec.js b/webapp/components/features/FollowList/FollowList.spec.js index ebce32a69..38efd5bd8 100644 --- a/webapp/components/features/FollowList/FollowList.spec.js +++ b/webapp/components/features/FollowList/FollowList.spec.js @@ -73,7 +73,7 @@ describe('FollowList.vue', () => { it(`has a button to load all remaining users ${type}`, async () => { jest.useFakeTimers() - wrapper.find('button').trigger('click') + wrapper.find('.base-button').trigger('click') await jest.runAllTicks() await wrapper.vm.$nextTick() @@ -112,7 +112,7 @@ describe('FollowList.vue', () => { }) }) - it('displays ne no-follower message', () => { + it('displays the no-follower message', () => { expect(wrapper.find('.no-connections').text()).toBe( `${propsData.user.name} ${wrapper.vm.$t()}`, ) diff --git a/webapp/components/features/FollowList/FollowList.vue b/webapp/components/features/FollowList/FollowList.vue index 7ec23af34..5f3eb52a7 100644 --- a/webapp/components/features/FollowList/FollowList.vue +++ b/webapp/components/features/FollowList/FollowList.vue @@ -1,6 +1,6 @@