aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/user-preferenced-currency-display/tests/user-preferenced-currency-display.container.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/user-preferenced-currency-display/tests/user-preferenced-currency-display.container.test.js')
-rw-r--r--ui/app/components/user-preferenced-currency-display/tests/user-preferenced-currency-display.container.test.js115
1 files changed, 0 insertions, 115 deletions
diff --git a/ui/app/components/user-preferenced-currency-display/tests/user-preferenced-currency-display.container.test.js b/ui/app/components/user-preferenced-currency-display/tests/user-preferenced-currency-display.container.test.js
deleted file mode 100644
index ba1c23d83..000000000
--- a/ui/app/components/user-preferenced-currency-display/tests/user-preferenced-currency-display.container.test.js
+++ /dev/null
@@ -1,115 +0,0 @@
-import assert from 'assert'
-import proxyquire from 'proxyquire'
-
-let mapStateToProps, mergeProps
-
-proxyquire('../user-preferenced-currency-display.container.js', {
- 'react-redux': {
- connect: (ms, md, mp) => {
- mapStateToProps = ms
- mergeProps = mp
- return () => ({})
- },
- },
-})
-
-describe('UserPreferencedCurrencyDisplay container', () => {
- describe('mapStateToProps()', () => {
- it('should return the correct props', () => {
- const mockState = {
- metamask: {
- nativeCurrency: 'ETH',
- preferences: {
- useNativeCurrencyAsPrimaryCurrency: true,
- },
- },
- }
-
- assert.deepEqual(mapStateToProps(mockState), {
- nativeCurrency: 'ETH',
- useNativeCurrencyAsPrimaryCurrency: true,
- })
- })
- })
-
- describe('mergeProps()', () => {
- it('should return the correct props', () => {
- const mockDispatchProps = {}
-
- const tests = [
- {
- stateProps: {
- useNativeCurrencyAsPrimaryCurrency: true,
- nativeCurrency: 'ETH',
- },
- ownProps: {
- type: 'PRIMARY',
- },
- result: {
- currency: 'ETH',
- nativeCurrency: 'ETH',
- numberOfDecimals: 6,
- prefix: undefined,
- },
- },
- {
- stateProps: {
- useNativeCurrencyAsPrimaryCurrency: false,
- nativeCurrency: 'ETH',
- },
- ownProps: {
- type: 'PRIMARY',
- },
- result: {
- currency: undefined,
- nativeCurrency: 'ETH',
- numberOfDecimals: 2,
- prefix: undefined,
- },
- },
- {
- stateProps: {
- useNativeCurrencyAsPrimaryCurrency: true,
- nativeCurrency: 'ETH',
- },
- ownProps: {
- type: 'SECONDARY',
- fiatNumberOfDecimals: 4,
- fiatPrefix: '-',
- },
- result: {
- nativeCurrency: 'ETH',
- currency: undefined,
- numberOfDecimals: 4,
- prefix: '-',
- },
- },
- {
- stateProps: {
- useNativeCurrencyAsPrimaryCurrency: false,
- nativeCurrency: 'ETH',
- },
- ownProps: {
- type: 'SECONDARY',
- fiatNumberOfDecimals: 4,
- numberOfDecimals: 3,
- fiatPrefix: 'a',
- prefix: 'b',
- },
- result: {
- currency: 'ETH',
- nativeCurrency: 'ETH',
- numberOfDecimals: 3,
- prefix: 'b',
- },
- },
- ]
-
- tests.forEach(({ stateProps, ownProps, result }) => {
- assert.deepEqual(mergeProps({ ...stateProps }, mockDispatchProps, { ...ownProps }), {
- ...result,
- })
- })
- })
- })
-})