yarn lint --fix

This commit is contained in:
elweyn 2022-01-19 15:10:31 +01:00 committed by ogerly
parent 5d4b3825c1
commit 1aeab3244d
2 changed files with 1 additions and 5 deletions

View File

@ -103,9 +103,7 @@ describe('CreationTransactionListFormular', () => {
)
})
it('has two values for the transaction', async () => {
await wrapper.vm.$nextTick()
console.log(wrapper.html())
it('has two values for the transaction', () => {
expect(wrapper.find('tbody').findAll('tr').length).toBe(2)
})

View File

@ -53,9 +53,7 @@ export default {
},
})
.then((result) => {
console.log(result)
this.items = result.data.transactionList.transactions.filter((t) => t.type === 'creation')
console.log( this.items)
})
.catch((error) => {
this.$toasted.error(error.message)