From 6ce6ab422b36965f7c24fa6e1da9eb3e5a953270 Mon Sep 17 00:00:00 2001 From: Moriz Wahl Date: Wed, 26 May 2021 15:18:47 +0200 Subject: [PATCH] linting --- .../Pages/AccountOverview/GddTransactionList.spec.js | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/frontend/src/views/Pages/AccountOverview/GddTransactionList.spec.js b/frontend/src/views/Pages/AccountOverview/GddTransactionList.spec.js index 9227ccbbf..af084d784 100644 --- a/frontend/src/views/Pages/AccountOverview/GddTransactionList.spec.js +++ b/frontend/src/views/Pages/AccountOverview/GddTransactionList.spec.js @@ -110,9 +110,7 @@ describe('GddTransactionList', () => { }) it('shows the date of the transaction', () => { - expect(transaction.findAll('div').at(3).text()).toContain( - 'Tue May 25 2021', - ) + expect(transaction.findAll('div').at(3).text()).toContain('Tue May 25 2021') }) }) @@ -143,9 +141,7 @@ describe('GddTransactionList', () => { }) it('shows the date of the transaction', () => { - expect(transaction.findAll('div').at(3).text()).toContain( - 'Thu Apr 29 2021', - ) + expect(transaction.findAll('div').at(3).text()).toContain('Thu Apr 29 2021') }) }) @@ -176,9 +172,7 @@ describe('GddTransactionList', () => { }) it('shows the date of the transaction', () => { - expect(transaction.findAll('div').at(3).text()).toContain( - 'Thu Apr 29 2021', - ) + expect(transaction.findAll('div').at(3).text()).toContain('Thu Apr 29 2021') }) })