From e516ae93a75891320b3f4ec50d2cb08c5bf41070 Mon Sep 17 00:00:00 2001 From: Raphael Beer Date: Fri, 27 Mar 2020 09:03:25 +0100 Subject: [PATCH] Fix: naming conventions Co-Authored-By: mattwr18 --- webapp/components/features/FollowList/FollowList.spec.js | 4 ++-- webapp/components/features/FollowList/FollowList.vue | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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 @@