diff --git a/frontend/src/components/SidebarPlugin/SideBar.spec.js b/frontend/src/components/SidebarPlugin/SideBar.spec.js index 4612f6f9e..f9e0780d4 100644 --- a/frontend/src/components/SidebarPlugin/SideBar.spec.js +++ b/frontend/src/components/SidebarPlugin/SideBar.spec.js @@ -41,20 +41,6 @@ describe('SideBar', () => { expect(wrapper.find('#sidenav-main').exists()).toBeTruthy() }) - describe('balance', () => { - it('shows em-dash as balance while loading', () => { - expect(wrapper.find('.gddBalance').text()).toBe('— GDD') - }) - - it('shows the when loaded', async () => { - wrapper.setProps({ - pending: false, - }) - await wrapper.vm.$nextTick() - expect(wrapper.find('.gddBalance').text()).toBe('1234.56 GDD') - }) - }) - describe('navbar button', () => { it('has a navbar button', () => { expect(wrapper.find('button.navbar-toggler').exists()).toBeTruthy() diff --git a/frontend/src/components/SidebarPlugin/SideBar.vue b/frontend/src/components/SidebarPlugin/SideBar.vue index 138c802e9..d2373e1de 100755 --- a/frontend/src/components/SidebarPlugin/SideBar.vue +++ b/frontend/src/components/SidebarPlugin/SideBar.vue @@ -9,13 +9,6 @@ Gradido Logo -
{{ pending ? '—' : $n(balance, 'decimal') }} GDD
- -
-
- -
-