From 739eb67bec1f8e472a0d9ffbbb0a426b1ee19a60 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sat, 21 Jun 2014 23:55:02 -0700 Subject: [PATCH] Add `_.isError` to host object test. --- test/test.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/test.js b/test/test.js index 021c25e28..7fdefc80a 100644 --- a/test/test.js +++ b/test/test.js @@ -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) {