From a4cc08aa7df8b2eb66413a151aad202a135ed582 Mon Sep 17 00:00:00 2001 From: Moriz Wahl Date: Wed, 26 May 2021 15:11:42 +0200 Subject: [PATCH] remove time check due to conflicts of timezone with local machines --- .../views/Pages/AccountOverview/GddTransactionList.spec.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/views/Pages/AccountOverview/GddTransactionList.spec.js b/frontend/src/views/Pages/AccountOverview/GddTransactionList.spec.js index aa29d36e8..9227ccbbf 100644 --- a/frontend/src/views/Pages/AccountOverview/GddTransactionList.spec.js +++ b/frontend/src/views/Pages/AccountOverview/GddTransactionList.spec.js @@ -111,7 +111,7 @@ describe('GddTransactionList', () => { it('shows the date of the transaction', () => { expect(transaction.findAll('div').at(3).text()).toContain( - 'Tue May 25 2021 19:38:13 GMT+0200', + 'Tue May 25 2021', ) }) }) @@ -144,7 +144,7 @@ describe('GddTransactionList', () => { it('shows the date of the transaction', () => { expect(transaction.findAll('div').at(3).text()).toContain( - 'Thu Apr 29 2021 17:34:49 GMT+0200', + 'Thu Apr 29 2021', ) }) }) @@ -177,7 +177,7 @@ describe('GddTransactionList', () => { it('shows the date of the transaction', () => { expect(transaction.findAll('div').at(3).text()).toContain( - 'Thu Apr 29 2021 19:26:40 GMT+0200', + 'Thu Apr 29 2021', ) }) })