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.
20 lines
487 B
20 lines
487 B
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).bind(obj)
|
|
nodified('baz', function (err, res) {
|
|
assert.equal(res, 'barbaz')
|
|
done()
|
|
})
|
|
})
|
|
})
|
|
|