From a17d5eea47a63c90d809a934749a1f8d89a8356b Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sun, 19 Jul 2015 10:02:52 -0700 Subject: [PATCH] Remove splice objects tests. --- test/test.js | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/test/test.js b/test/test.js index 5bdf0d559..a3d055fd7 100644 --- a/test/test.js +++ b/test/test.js @@ -16992,28 +16992,6 @@ /*--------------------------------------------------------------------------*/ - QUnit.module('splice objects'); - - _.each(['pop', 'shift', 'splice'], function(methodName) { - test('`_(...).' + methodName + '` should remove the value at index `0` when length is `0` (test in IE 8 compatibility mode)', 2, function() { - if (!isNpm) { - var wrapped = _({ '0': 1, 'length': 1 }); - if (methodName == 'splice') { - wrapped.splice(0, 1).value(); - } else { - wrapped[methodName](); - } - deepEqual(wrapped.keys().value(), ['length']); - strictEqual(wrapped.first(), undefined); - } - else { - skipTest(2); - } - }); - }); - - /*--------------------------------------------------------------------------*/ - QUnit.module('lodash(...).toString'); (function() {