mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-31 15:27:50 +00:00
Fix test in IE.
This commit is contained in:
10
test/test.js
10
test/test.js
@@ -5961,12 +5961,12 @@
|
||||
});
|
||||
});
|
||||
|
||||
test('should not error on host objects (test in IE)', 12, function() {
|
||||
test('should not error on host objects (test in IE)', 15, function() {
|
||||
if (xml) {
|
||||
var funcs = [
|
||||
'isArray', 'isArguments', 'isBoolean', 'isDate', 'isElement', 'isError',
|
||||
'isFunction', 'isObject', 'isNull', 'isNumber', 'isRegExp', 'isString',
|
||||
'isUndefined'
|
||||
'isArguments', 'isArray', 'isBoolean', 'isDate', 'isElement',
|
||||
'isError', 'isFinite', 'isFunction', 'isNaN', 'isNull', 'isNumber',
|
||||
'isObject', 'isRegExp', 'isString', 'isUndefined'
|
||||
];
|
||||
|
||||
_.each(funcs, function(methodName) {
|
||||
@@ -5980,7 +5980,7 @@
|
||||
});
|
||||
}
|
||||
else {
|
||||
skipTest(17);
|
||||
skipTest(15);
|
||||
}
|
||||
});
|
||||
}());
|
||||
|
||||
Reference in New Issue
Block a user