From 2a3489ed9e24e09248d11e6d1e60f122bc398676 Mon Sep 17 00:00:00 2001 From: ogerly Date: Tue, 3 Jan 2023 10:16:21 +0100 Subject: [PATCH] remnove skip from TransactionForm.spec.js --- frontend/src/components/GddSend/TransactionForm.spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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' }) })