aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app
diff options
context:
space:
mode:
authorbrunobar79 <brunobar79@gmail.com>2018-11-15 04:42:45 +0800
committerbrunobar79 <brunobar79@gmail.com>2018-11-15 04:42:45 +0800
commit18f39ef69e117a3560456a30f0e8506ed7b0e044 (patch)
treeee784e647b16f343b7efbe298a5f9c5f462d04e3 /ui/app
parent484aa6801ea50fb08253fd08559710c53e0c189d (diff)
parentf6e042b7b12fec755b0a91ff24a1e812f65b638d (diff)
downloadtangerine-wallet-browser-18f39ef69e117a3560456a30f0e8506ed7b0e044.tar
tangerine-wallet-browser-18f39ef69e117a3560456a30f0e8506ed7b0e044.tar.gz
tangerine-wallet-browser-18f39ef69e117a3560456a30f0e8506ed7b0e044.tar.bz2
tangerine-wallet-browser-18f39ef69e117a3560456a30f0e8506ed7b0e044.tar.lz
tangerine-wallet-browser-18f39ef69e117a3560456a30f0e8506ed7b0e044.tar.xz
tangerine-wallet-browser-18f39ef69e117a3560456a30f0e8506ed7b0e044.tar.zst
tangerine-wallet-browser-18f39ef69e117a3560456a30f0e8506ed7b0e044.zip
Merge branch 'develop' of github.com:MetaMask/metamask-extension into trezor-v5
Diffstat (limited to 'ui/app')
-rw-r--r--ui/app/components/transaction-status/tests/transaction-status.component.test.js35
-rw-r--r--ui/app/components/transaction-status/transaction-status.component.js1
2 files changed, 35 insertions, 1 deletions
diff --git a/ui/app/components/transaction-status/tests/transaction-status.component.test.js b/ui/app/components/transaction-status/tests/transaction-status.component.test.js
new file mode 100644
index 000000000..9e3bffe4f
--- /dev/null
+++ b/ui/app/components/transaction-status/tests/transaction-status.component.test.js
@@ -0,0 +1,35 @@
+import React from 'react'
+import assert from 'assert'
+import { mount } from 'enzyme'
+import TransactionStatus from '../transaction-status.component'
+import Tooltip from '../../tooltip-v2'
+
+describe('TransactionStatus Component', () => {
+ it('should render APPROVED properly', () => {
+ const wrapper = mount(
+ <TransactionStatus
+ statusKey="approved"
+ title="test-title"
+ />,
+ { context: { t: str => str.toUpperCase() } }
+ )
+
+ assert.ok(wrapper)
+ const tooltipProps = wrapper.find(Tooltip).props()
+ assert.equal(tooltipProps.children, 'APPROVED')
+ assert.equal(tooltipProps.title, 'test-title')
+ })
+
+ it('should render SUBMITTED properly', () => {
+ const wrapper = mount(
+ <TransactionStatus
+ statusKey="submitted"
+ />,
+ { context: { t: str => str.toUpperCase() } }
+ )
+
+ assert.ok(wrapper)
+ const tooltipProps = wrapper.find(Tooltip).props()
+ assert.equal(tooltipProps.children, 'PENDING')
+ })
+})
diff --git a/ui/app/components/transaction-status/transaction-status.component.js b/ui/app/components/transaction-status/transaction-status.component.js
index c22baf18a..0d47d7868 100644
--- a/ui/app/components/transaction-status/transaction-status.component.js
+++ b/ui/app/components/transaction-status/transaction-status.component.js
@@ -25,7 +25,6 @@ const statusToClassNameHash = {
}
const statusToTextHash = {
- [APPROVED_STATUS]: 'pending',
[SUBMITTED_STATUS]: 'pending',
}