1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

add test for no callback error

This commit is contained in:
frankiebee 2017-08-03 22:10:33 -04:00
parent a8966c4a4f
commit b955b5a89a

View File

@ -17,4 +17,15 @@ describe('nodeify', function () {
done()
})
})
it('should throw if the last argument is not a function', function (done) {
var nodified = nodeify(obj.promiseFunc, obj)
try {
nodified('baz')
done(new Error('should have thrown if the last argument is not a function'))
} catch (err) {
if (err.message === 'callback is not a function') done()
else done(err)
}
})
})