mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
nodeify - test - syntax nitpick
This commit is contained in:
parent
b955b5a89a
commit
500e7d1f04
@ -19,13 +19,13 @@ describe('nodeify', function () {
|
|||||||
})
|
})
|
||||||
|
|
||||||
it('should throw if the last argument is not a function', function (done) {
|
it('should throw if the last argument is not a function', function (done) {
|
||||||
var nodified = nodeify(obj.promiseFunc, obj)
|
const nodified = nodeify(obj.promiseFunc, obj)
|
||||||
try {
|
try {
|
||||||
nodified('baz')
|
nodified('baz')
|
||||||
done(new Error('should have thrown if the last argument is not a function'))
|
done(new Error('should have thrown if the last argument is not a function'))
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
if (err.message === 'callback is not a function') done()
|
assert.equal(err.message, 'callback is not a function')
|
||||||
else done(err)
|
done()
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user