aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/transaction-status/tests
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/transaction-status/tests')
-rw-r--r--ui/app/components/transaction-status/tests/transaction-status.component.test.js35
1 files changed, 35 insertions, 0 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')
+ })
+})