From bb122f25b953b57b26f3ec672154c9b812d854fb Mon Sep 17 00:00:00 2001 From: elweyn Date: Fri, 29 Oct 2021 14:09:32 +0200 Subject: [PATCH] Test that the community calls work properly. --- frontend/src/views/Pages/RegisterCommunity.spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/views/Pages/RegisterCommunity.spec.js b/frontend/src/views/Pages/RegisterCommunity.spec.js index 09f1fd4e9..18627821b 100644 --- a/frontend/src/views/Pages/RegisterCommunity.spec.js +++ b/frontend/src/views/Pages/RegisterCommunity.spec.js @@ -93,11 +93,11 @@ describe('RegisterCommunity', () => { }) it('has a Community name', () => { - expect(wrapper.find('.test-communitydata b').text()).toBe('Gradido Entwicklung') + expect(wrapper.find('.justify-content-center h1').text()).toBe('Gradido Entwicklung') }) it('has a Community description', () => { - expect(wrapper.find('.test-communitydata p').text()).toBe( + expect(wrapper.find('.justify-content-center p').text()).toBe( 'Die lokale Entwicklungsumgebung von Gradido.', ) })