aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/send_/send-footer/tests/send-footer-utils.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/send_/send-footer/tests/send-footer-utils.test.js')
-rw-r--r--ui/app/components/send_/send-footer/tests/send-footer-utils.test.js32
1 files changed, 0 insertions, 32 deletions
diff --git a/ui/app/components/send_/send-footer/tests/send-footer-utils.test.js b/ui/app/components/send_/send-footer/tests/send-footer-utils.test.js
index b235ea5e5..2d3135995 100644
--- a/ui/app/components/send_/send-footer/tests/send-footer-utils.test.js
+++ b/ui/app/components/send_/send-footer/tests/send-footer-utils.test.js
@@ -16,7 +16,6 @@ const sendUtils = proxyquire('../send-footer.utils.js', {
})
const {
addressIsNew,
- formShouldBeDisabled,
constructTxParams,
constructUpdatedTx,
addHexPrefixToObjectValues,
@@ -65,37 +64,6 @@ describe('send-footer utils', () => {
})
})
- describe('formShouldBeDisabled()', () => {
- const config = {
- 'should return true if inError is truthy': {
- inError: true,
- expectedResult: true,
- },
- 'should return true if gasTotal is falsy': {
- inError: false,
- gasTotal: false,
- expectedResult: true,
- },
- 'should return true if selectedToken is truthy and tokenBalance is falsy': {
- selectedToken: true,
- tokenBalance: null,
- expectedResult: true,
- },
- 'should return false if inError is false and all other params are truthy': {
- inError: false,
- gasTotal: '0x123',
- selectedToken: true,
- tokenBalance: 123,
- expectedResult: false,
- },
- }
- Object.entries(config).map(([description, obj]) => {
- it(description, () => {
- assert.equal(formShouldBeDisabled(obj), obj.expectedResult)
- })
- })
- })
-
describe('constructTxParams()', () => {
it('should return a new txParams object with value and to properties if there is no selectedToken', () => {
assert.deepEqual(