Fix linting.

This commit is contained in:
elweyn 2022-04-08 08:16:20 +02:00
parent 38ee27005f
commit de7891f492

View File

@ -162,7 +162,12 @@ describe('Send', () => {
describe('transaction form link', () => {
beforeEach(async () => {
apolloMutationMock.mockResolvedValue({
data: { createTransactionLink: { code: '0123456789', link: 'http://localhost/redeem/0123456789' } },
data: {
createTransactionLink: {
code: '0123456789',
link: 'http://localhost/redeem/0123456789',
},
},
})
const transactionForm = wrapper.findComponent({ name: 'TransactionForm' })
await transactionForm.findAll('input[type="radio"]').at(1).setChecked()