From 1aeab3244d454be259eb5eef5d7dc3d315f6a715 Mon Sep 17 00:00:00 2001 From: elweyn Date: Wed, 19 Jan 2022 15:10:31 +0100 Subject: [PATCH] yarn lint --fix --- admin/src/components/CreationTransactionListFormular.spec.js | 4 +--- admin/src/components/CreationTransactionListFormular.vue | 2 -- 2 files changed, 1 insertion(+), 5 deletions(-) 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)