aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/send/tests/send-utils.test.js
diff options
context:
space:
mode:
authorDan <danjm.com@gmail.com>2018-07-03 08:31:57 +0800
committerWhymarrh Whitby <whymarrh.whitby@gmail.com>2018-07-16 23:28:32 +0800
commit2e0cbf210e4c7096f1b7843ac9b31dd92b312355 (patch)
tree480f5c1e310a368ffaf891f6efc69ba4a122e59e /ui/app/components/send/tests/send-utils.test.js
parentb3d78ed8a1fbea059344b04416fb21bdb1b73f86 (diff)
downloadtangerine-wallet-browser-2e0cbf210e4c7096f1b7843ac9b31dd92b312355.tar.gz
tangerine-wallet-browser-2e0cbf210e4c7096f1b7843ac9b31dd92b312355.tar.zst
tangerine-wallet-browser-2e0cbf210e4c7096f1b7843ac9b31dd92b312355.zip
Fix lint warnings in the send/ directory.
Diffstat (limited to 'ui/app/components/send/tests/send-utils.test.js')
-rw-r--r--ui/app/components/send/tests/send-utils.test.js26
1 files changed, 26 insertions, 0 deletions
diff --git a/ui/app/components/send/tests/send-utils.test.js b/ui/app/components/send/tests/send-utils.test.js
index b8579e0e4..18dde495a 100644
--- a/ui/app/components/send/tests/send-utils.test.js
+++ b/ui/app/components/send/tests/send-utils.test.js
@@ -58,6 +58,7 @@ const {
calcTokenBalance,
isBalanceSufficient,
isTokenBalanceSufficient,
+ removeLeadingZeroes,
} = sendUtils
describe('send utils', () => {
@@ -483,4 +484,29 @@ describe('send utils', () => {
assert.equal(getToAddressForGasUpdate(undefined, 'B'), 'b')
})
})
+
+ describe('removeLeadingZeroes()', () => {
+ it('should remove leading zeroes from int when user types', () => {
+ assert.equal(removeLeadingZeroes('0'), '0')
+ assert.equal(removeLeadingZeroes('1'), '1')
+ assert.equal(removeLeadingZeroes('00'), '0')
+ assert.equal(removeLeadingZeroes('01'), '1')
+ })
+
+ it('should remove leading zeroes from int when user copy/paste', () => {
+ assert.equal(removeLeadingZeroes('001'), '1')
+ })
+
+ it('should remove leading zeroes from float when user types', () => {
+ assert.equal(removeLeadingZeroes('0.'), '0.')
+ assert.equal(removeLeadingZeroes('0.0'), '0.0')
+ assert.equal(removeLeadingZeroes('0.00'), '0.00')
+ assert.equal(removeLeadingZeroes('0.001'), '0.001')
+ assert.equal(removeLeadingZeroes('0.10'), '0.10')
+ })
+
+ it('should remove leading zeroes from float when user copy/paste', () => {
+ assert.equal(removeLeadingZeroes('00.1'), '0.1')
+ })
+ })
})