remnove skip from TransactionForm.spec.js

This commit is contained in:
ogerly 2023-01-03 10:16:21 +01:00
parent 2b8b65d35b
commit 2a3489ed9e

View File

@ -44,7 +44,7 @@ describe('TransactionForm', () => {
expect(wrapper.find('div.transaction-form').exists()).toBe(true) expect(wrapper.find('div.transaction-form').exists()).toBe(true)
}) })
describe.skip('with balance <= 0.00 GDD the form is disabled', () => { describe('with balance <= 0.00 GDD the form is disabled', () => {
it.skip('has a disabled input field of type email', () => { it.skip('has a disabled input field of type email', () => {
expect(wrapper.findAll('div.form-group').at(0).find('input').attributes('disabled')).toBe( expect(wrapper.findAll('div.form-group').at(0).find('input').attributes('disabled')).toBe(
'disabled', 'disabled',
@ -72,7 +72,7 @@ describe('TransactionForm', () => {
}) })
}) })
describe.skip('with balance greater 0.00 (100.00) GDD the form is fully enabled', () => { describe('with balance greater 0.00 (100.00) GDD the form is fully enabled', () => {
beforeEach(() => { beforeEach(() => {
wrapper.setProps({ balance: '100.0' }) wrapper.setProps({ balance: '100.0' })
}) })