diff options
author | Alexander Tseung <alextsg@gmail.com> | 2018-09-01 03:14:06 +0800 |
---|---|---|
committer | Alexander Tseung <alextsg@gmail.com> | 2018-09-13 10:48:51 +0800 |
commit | 702b7568820d7a695f191df6bf44c76b37fdc7d8 (patch) | |
tree | ccec9173e15bd7d455ee8c0137f9c3f53af093e8 /ui/app/components/currency-display/tests | |
parent | e5ca2aac6f123e3e1db5e18c5854351c58af42b2 (diff) | |
download | tangerine-wallet-browser-702b7568820d7a695f191df6bf44c76b37fdc7d8.tar tangerine-wallet-browser-702b7568820d7a695f191df6bf44c76b37fdc7d8.tar.gz tangerine-wallet-browser-702b7568820d7a695f191df6bf44c76b37fdc7d8.tar.bz2 tangerine-wallet-browser-702b7568820d7a695f191df6bf44c76b37fdc7d8.tar.lz tangerine-wallet-browser-702b7568820d7a695f191df6bf44c76b37fdc7d8.tar.xz tangerine-wallet-browser-702b7568820d7a695f191df6bf44c76b37fdc7d8.tar.zst tangerine-wallet-browser-702b7568820d7a695f191df6bf44c76b37fdc7d8.zip |
Allow denominations in CurrencyDisplay component
Diffstat (limited to 'ui/app/components/currency-display/tests')
-rw-r--r-- | ui/app/components/currency-display/tests/currency-display.container.test.js | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/ui/app/components/currency-display/tests/currency-display.container.test.js b/ui/app/components/currency-display/tests/currency-display.container.test.js index 474ce5378..5265bbb04 100644 --- a/ui/app/components/currency-display/tests/currency-display.container.test.js +++ b/ui/app/components/currency-display/tests/currency-display.container.test.js @@ -51,6 +51,50 @@ describe('CurrencyDisplay container', () => { displayValue: '1.266 ETH', }, }, + { + props: { + value: '0x1193461d01595930', + currency: 'ETH', + numberOfDecimals: 3, + hideLabel: true, + }, + result: { + displayValue: '1.266', + }, + }, + { + props: { + value: '0x3b9aca00', + currency: 'ETH', + denomination: 'GWEI', + hideLabel: true, + }, + result: { + displayValue: '1', + }, + }, + { + props: { + value: '0x3b9aca00', + currency: 'ETH', + denomination: 'WEI', + hideLabel: true, + }, + result: { + displayValue: '1000000000', + }, + }, + { + props: { + value: '0x3b9aca00', + currency: 'ETH', + numberOfDecimals: 100, + hideLabel: true, + }, + result: { + displayValue: '1e-9', + }, + }, ] tests.forEach(({ props, result }) => { |