error query set individually

This commit is contained in:
ogerly 2021-12-16 09:45:51 +01:00
parent ab3b4f40bb
commit de7549596e

View File

@ -63,9 +63,14 @@ describe('GddTransactionList', () => {
})
describe('without any properties', () => {
it('renders text saying that there are no transactions', () => {
it('renders text saying that there are error.empty-transactionlist ', () => {
expect(wrapper.find('div.gdd-transaction-list').text()).toContain(
'error.empty-transactionlist transaction.nullTransactions',
'error.empty-transactionlist',
)
})
it('renders text saying that there are no transaction.nullTransactions', () => {
expect(wrapper.find('div.gdd-transaction-list').text()).toContain(
'transaction.nullTransactions',
)
})
})