changes reviews

This commit is contained in:
ogerly 2021-07-17 19:05:17 +02:00
parent 2e01042210
commit 53cda6cda9

View File

@ -118,7 +118,7 @@ describe('GddTransactionList', () => {
expect(transaction.findAll('div').at(0).text()).toContain('Bob der Baumeister')
})
it('shows the memo of the receiver', () => {
it('shows the message of the transaction', () => {
expect(transaction.findAll('div').at(5).text()).toContain('Alles Gute zum Geburtstag')
})
@ -180,11 +180,11 @@ describe('GddTransactionList', () => {
expect(transaction.findAll('div').at(2).text()).toContain('+ 314.98')
})
it('shows the name of the receiver', () => {
it('shows the name of the recipient', () => {
expect(transaction.findAll('div').at(0).text()).toContain('Jan Ulrich')
})
it('shows the memo of the receiver', () => {
it('shows the message of the transaction', () => {
expect(transaction.findAll('div').at(5).text()).toContain('Für das Fahrrad!')
})