get send page test working again

This commit is contained in:
Moriz Wahl 2023-01-12 13:23:45 +01:00
parent 148b1cb41d
commit 78a219afea
3 changed files with 3 additions and 3 deletions

View File

@ -322,7 +322,7 @@ Die ganze Welt bezwingen.“`)
[ [
{ {
email: 'someone@watches.tv', email: 'someone@watches.tv',
amount: '87.23', amount: 87.23,
memo: 'Long enough', memo: 'Long enough',
selected: 'send', selected: 'send',
}, },

View File

@ -144,7 +144,7 @@ export default {
this.$emit('set-transaction', { this.$emit('set-transaction', {
selected: this.radioSelected, selected: this.radioSelected,
email: this.form.email, email: this.form.email,
amount: this.form.amount, amount: parseFloat(this.form.amount),
memo: this.form.memo, memo: this.form.memo,
}) })
}, },

View File

@ -13,7 +13,7 @@ const navigatorClipboardMock = jest.fn()
const localVue = global.localVue const localVue = global.localVue
describe.skip('Send', () => { describe('Send', () => {
let wrapper let wrapper
const propsData = { const propsData = {