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.
31 lines
778 B
31 lines
778 B
8 years ago
|
const assert = require('assert')
|
||
7 years ago
|
const nodeify = require('../../../app/scripts/lib/nodeify')
|
||
8 years ago
|
|
||
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) {
|
||
7 years ago
|
var nodified = nodeify(obj.promiseFunc, obj)
|
||
8 years ago
|
nodified('baz', function (err, res) {
|
||
|
assert.equal(res, 'barbaz')
|
||
|
done()
|
||
|
})
|
||
|
})
|
||
7 years ago
|
|
||
7 years ago
|
it('should allow the last argument to not be a function', function (done) {
|
||
7 years ago
|
const nodified = nodeify(obj.promiseFunc, obj)
|
||
7 years ago
|
try {
|
||
|
nodified('baz')
|
||
7 years ago
|
done()
|
||
7 years ago
|
} catch (err) {
|
||
|
done(new Error('should not have thrown if the last argument is not a function'))
|
||
7 years ago
|
}
|
||
|
})
|
||
8 years ago
|
})
|