aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/send_/send-content/send-amount-row/tests/send-amount-row-selectors.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/send_/send-content/send-amount-row/tests/send-amount-row-selectors.test.js')
-rw-r--r--ui/app/components/send_/send-content/send-amount-row/tests/send-amount-row-selectors.test.js34
1 files changed, 0 insertions, 34 deletions
diff --git a/ui/app/components/send_/send-content/send-amount-row/tests/send-amount-row-selectors.test.js b/ui/app/components/send_/send-content/send-amount-row/tests/send-amount-row-selectors.test.js
deleted file mode 100644
index 4672cb8a7..000000000
--- a/ui/app/components/send_/send-content/send-amount-row/tests/send-amount-row-selectors.test.js
+++ /dev/null
@@ -1,34 +0,0 @@
-import assert from 'assert'
-import {
- sendAmountIsInError,
-} from '../send-amount-row.selectors.js'
-
-describe('send-amount-row selectors', () => {
-
- describe('sendAmountIsInError()', () => {
- it('should return true if send.errors.amount is truthy', () => {
- const state = {
- send: {
- errors: {
- amount: 'abc',
- },
- },
- }
-
- assert.equal(sendAmountIsInError(state), true)
- })
-
- it('should return false if send.errors.amount is falsy', () => {
- const state = {
- send: {
- errors: {
- amount: null,
- },
- },
- }
-
- assert.equal(sendAmountIsInError(state), false)
- })
- })
-
-})