aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/app/nodeify-test.js
diff options
context:
space:
mode:
authorThomas Huang <tmashuang@users.noreply.github.com>2018-05-31 07:04:02 +0800
committerGitHub <noreply@github.com>2018-05-31 07:04:02 +0800
commitdc5477be3cc62dff912a9447c702edab66200f02 (patch)
tree4c4c4293bfbc2a80812d231af9c7e22877cebfbd /test/unit/app/nodeify-test.js
parent5fc24930a7febd919ec6a8f6e9c14f2bac0ef2b2 (diff)
parente59f606adb65de85484b0fb258980543967ee5e1 (diff)
downloadtangerine-wallet-browser-dc5477be3cc62dff912a9447c702edab66200f02.tar.gz
tangerine-wallet-browser-dc5477be3cc62dff912a9447c702edab66200f02.tar.zst
tangerine-wallet-browser-dc5477be3cc62dff912a9447c702edab66200f02.zip
Merge pull request #4408 from MetaMask/v4.7.0rc2
Version 4.7.0 - rc2
Diffstat (limited to 'test/unit/app/nodeify-test.js')
-rw-r--r--test/unit/app/nodeify-test.js30
1 files changed, 30 insertions, 0 deletions
diff --git a/test/unit/app/nodeify-test.js b/test/unit/app/nodeify-test.js
new file mode 100644
index 000000000..901603c8b
--- /dev/null
+++ b/test/unit/app/nodeify-test.js
@@ -0,0 +1,30 @@
+const assert = require('assert')
+const nodeify = require('../../../app/scripts/lib/nodeify')
+
+describe('nodeify', function () {
+ var obj = {
+ foo: 'bar',
+ promiseFunc: function (a) {
+ var solution = this.foo + a
+ return Promise.resolve(solution)
+ },
+ }
+
+ it('should retain original context', function (done) {
+ var nodified = nodeify(obj.promiseFunc, obj)
+ nodified('baz', function (err, res) {
+ assert.equal(res, 'barbaz')
+ done()
+ })
+ })
+
+ it('should allow the last argument to not be a function', function (done) {
+ const nodified = nodeify(obj.promiseFunc, obj)
+ try {
+ nodified('baz')
+ done()
+ } catch (err) {
+ done(new Error('should not have thrown if the last argument is not a function'))
+ }
+ })
+})