aboutsummaryrefslogblamecommitdiffstats
path: root/test/unit/nodeify-test.js
blob: 537dae6056021c85de953b006a19c8fa1026febd (plain) (tree)
1
2
3
4
5
6
7
8
9


                                                        
                                 




                                      
      

   
                                                        
                                                




                                         

                                                                             
                                                  



                                                                                  

                                                             

     
  
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 throw if the last argument is not a function', function (done) {
    const nodified = nodeify(obj.promiseFunc, obj)
    try {
      nodified('baz')
      done(new Error('should have thrown if the last argument is not a function'))
    } catch (err) {
      assert.equal(err.message, 'callback is not a function')
      done()
    }
  })
})