mirror of
https://github.com/tenrok/axios.git
synced 2026-05-30 15:24:11 +03:00
Fixing failing tests
This commit is contained in:
@@ -19,6 +19,12 @@ module.exports = {
|
||||
test.done();
|
||||
},
|
||||
|
||||
testIsUndefined: function (test) {
|
||||
test.equals(utils.isUndefined(), true);
|
||||
test.equals(utils.isUndefined(null), false);
|
||||
test.done();
|
||||
},
|
||||
|
||||
testIsObject: function (test) {
|
||||
test.equals(utils.isObject({}), true);
|
||||
test.equals(utils.isObject(null), false);
|
||||
|
||||
Reference in New Issue
Block a user