aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/nodeify-test.js
blob: d4ac2ea0b4cc2c88347f51fb292491f2fcb1f9ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
const assert = require('assert')
const nodeify = require('../../app/scripts/lib/nodeify')

describe.only('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()
    })
  })

})