Remove test which will now lock up _.times.

This commit is contained in:
John-David Dalton
2014-07-04 23:12:50 -05:00
parent 3063b19e1d
commit b560b35175

View File

@@ -10151,11 +10151,6 @@
QUnit.module('lodash.times');
(function() {
test('should rollover large `n` values', 1, function() {
var actual = _.times(Math.pow(2, 32) + 1);
deepEqual(actual, [0]);
});
test('should coerce non-finite `n` values to `0`', 3, function() {
_.each([-Infinity, NaN, Infinity], function(n) {
deepEqual(_.times(n), []);