Built motion from commit 503e72f.|0.0.143
[motion.git] / public / bower_components / lodash / test / underscore.html
index 468fef3..a3e56e8 100644 (file)
       QUnit.config.hidepassed = true;
       QUnit.config.excused = {
         'Arrays': {
+          'chunk': [
+            'defaults to empty array (chunk size 0)'
+          ],
+          'difference': [
+            'can perform an OO-style difference'
+          ],
           'drop': [
             'is an alias for rest'
           ],
             'is an alias for first'
           ],
           'uniq': [
-            'can find the unique values of an array using a custom iterator',
-            'can find the unique values of an array using a custom iterator without specifying whether array is sorted',
-            'string iterator works with sorted array',
-            'can use pluck like iterator',
+            'uses the result of `iterator` for uniqueness comparisons (unsorted case)',
+            '`sorted` argument defaults to false when omitted',
+            'when `iterator` is a string, uses that key for comparisons (unsorted case)',
+            'uses the result of `iterator` for uniqueness comparisons (sorted case)',
+            'when `iterator` is a string, uses that key for comparisons (sorted case)',
             'can use falsey pluck like iterator'
+          ],
+          'union': [
+            'can perform an OO-style union'
           ]
         },
         'Chaining': {
           'isMatch': [
             'doesnt falsey match constructor on undefined/null'
           ],
+          'isSet': [
+            'Died on test #9'
+          ],
           'findKey': [
             'called with context'
           ],
 
       // Only excuse in Sauce Labs.
       if (!ui.isSauceLabs) {
-        delete QUnit.config.excused.Functions['throttle repeatedly with results'];
-        delete QUnit.config.excused.Functions['more throttle does not trigger leading call when leading is set to false'];
         delete QUnit.config.excused.Functions['throttle does not trigger trailing call when trailing is set to false'];
         delete QUnit.config.excused.Utility.now;
       }
 
         require(getConfig(), [moduleId], function(lodash) {
           mixinPrereqs(lodash);
-
-          if (ui.isModularize) {
-            window._ = lodash;
-          }
           require(getConfig(), [
             'test/collections',
             'test/arrays',