diff --git a/frontend/src/components/GddSend/TransactionForm.spec.js b/frontend/src/components/GddSend/TransactionForm.spec.js index 9600f3b28..81864d12a 100644 --- a/frontend/src/components/GddSend/TransactionForm.spec.js +++ b/frontend/src/components/GddSend/TransactionForm.spec.js @@ -44,7 +44,7 @@ describe('TransactionForm', () => { 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', () => { expect(wrapper.findAll('div.form-group').at(0).find('input').attributes('disabled')).toBe( '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(() => { wrapper.setProps({ balance: '100.0' }) })