Add _.isError to host object test.

This commit is contained in:
John-David Dalton
2014-06-21 23:55:02 -07:00
parent a3049b6f94
commit 739eb67bec

View File

@@ -5961,8 +5961,9 @@
test('should not error on host objects (test in IE)', 12, function() {
if (xml) {
var funcs = [
'isArray', 'isArguments', 'isBoolean', 'isDate', 'isElement', 'isFunction',
'isObject', 'isNull', 'isNumber', 'isRegExp', 'isString', 'isUndefined'
'isArray', 'isArguments', 'isBoolean', 'isDate', 'isElement', 'isError',
'isFunction', 'isObject', 'isNull', 'isNumber', 'isRegExp', 'isString',
'isUndefined'
];
_.each(funcs, function(methodName) {