removing data that is not needed

This commit is contained in:
ogerly 2021-07-17 14:00:43 +02:00
parent bec0ea45f5
commit 48d2d4b527

View File

@ -118,8 +118,8 @@ describe('AccountOverview', () => {
.vm.$emit('send-transaction')
})
it('shows the error page', async () => {
expect(wrapper.find('div.card.card-body').text()).toContain('form.send_transaction_error')
it('shows the error page', () => {
expect(wrapper.find('div.card-body').text()).toContain('form.send_transaction_error')
})
})
})