A Metamask fork with Infura removed and default networks editable
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ciphermask/test/unit/nodeify-test.js

21 lines
487 B

8 years ago
const assert = require('assert')
const nodeify = require('../../app/scripts/lib/nodeify')
8 years ago
describe('nodeify', function () {
8 years ago
var obj = {
foo: 'bar',
promiseFunc: function (a) {
var solution = this.foo + a
return Promise.resolve(solution)
8 years ago
},
8 years ago
}
8 years ago
it('should retain original context', function (done) {
8 years ago
var nodified = nodeify(obj.promiseFunc).bind(obj)
nodified('baz', function (err, res) {
assert.equal(res, 'barbaz')
done()
})
})
})