aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/app/util-test.js
diff options
context:
space:
mode:
authorkumavis <kumavis@users.noreply.github.com>2018-05-23 04:02:41 +0800
committerGitHub <noreply@github.com>2018-05-23 04:02:41 +0800
commitcee55b47d03006630b1dbe038c6008654ca8f674 (patch)
treefe818a80ee98ee76a53e9be6087c09be02241503 /test/unit/app/util-test.js
parent492b4a674392e4772ef8e2cc8f5836b882cfeec7 (diff)
parent238f2eb179895bbb9e2a2ec26863041564c90a9d (diff)
downloadtangerine-wallet-browser-cee55b47d03006630b1dbe038c6008654ca8f674.tar.gz
tangerine-wallet-browser-cee55b47d03006630b1dbe038c6008654ca8f674.tar.zst
tangerine-wallet-browser-cee55b47d03006630b1dbe038c6008654ca8f674.zip
Merge pull request #4321 from MetaMask/testing
MM controller tests and reorganizing test files
Diffstat (limited to 'test/unit/app/util-test.js')
-rw-r--r--test/unit/app/util-test.js41
1 files changed, 41 insertions, 0 deletions
diff --git a/test/unit/app/util-test.js b/test/unit/app/util-test.js
new file mode 100644
index 000000000..670bc4d22
--- /dev/null
+++ b/test/unit/app/util-test.js
@@ -0,0 +1,41 @@
+const assert = require('assert')
+const { sufficientBalance } = require('../../../app/scripts/lib/util')
+
+
+describe('SufficientBalance', function () {
+ it('returns true if max tx cost is equal to balance.', function () {
+ const tx = {
+ 'value': '0x1',
+ 'gas': '0x2',
+ 'gasPrice': '0x3',
+ }
+ const balance = '0x8'
+
+ const result = sufficientBalance(tx, balance)
+ assert.ok(result, 'sufficient balance found.')
+ })
+
+ it('returns true if max tx cost is less than balance.', function () {
+ const tx = {
+ 'value': '0x1',
+ 'gas': '0x2',
+ 'gasPrice': '0x3',
+ }
+ const balance = '0x9'
+
+ const result = sufficientBalance(tx, balance)
+ assert.ok(result, 'sufficient balance found.')
+ })
+
+ it('returns false if max tx cost is more than balance.', function () {
+ const tx = {
+ 'value': '0x1',
+ 'gas': '0x2',
+ 'gasPrice': '0x3',
+ }
+ const balance = '0x6'
+
+ const result = sufficientBalance(tx, balance)
+ assert.ok(!result, 'insufficient balance found.')
+ })
+}) \ No newline at end of file