diff --git a/admin/src/components/CreationTransactionListFormular.spec.js b/admin/src/components/CreationTransactionListFormular.spec.js index e531ce040..e316678f3 100644 --- a/admin/src/components/CreationTransactionListFormular.spec.js +++ b/admin/src/components/CreationTransactionListFormular.spec.js @@ -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) }) diff --git a/admin/src/components/CreationTransactionListFormular.vue b/admin/src/components/CreationTransactionListFormular.vue index 54684b679..6f5864f7c 100644 --- a/admin/src/components/CreationTransactionListFormular.vue +++ b/admin/src/components/CreationTransactionListFormular.vue @@ -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)