From 11538ccf90891f9b5d9ac77a7e91a75a4756e66c Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Fri, 8 Jan 2016 21:33:42 -0800 Subject: [PATCH] Cleanup test labels. [ci skip] --- test/test.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/test.js b/test/test.js index 8dc2be54d..dd343bf55 100644 --- a/test/test.js +++ b/test/test.js @@ -2096,7 +2096,7 @@ } }); - QUnit.test('should enable chaining of methods that return unwrapped values by default', function(assert) { + QUnit.test('should enable chaining for methods that return unwrapped values', function(assert) { assert.expect(6); if (!isNpm) { @@ -13786,7 +13786,7 @@ } }); - QUnit.test('should use `this` as the default `object` value', function(assert) { + QUnit.test('should use a default `object` of `this`', function(assert) { assert.expect(3); var object = lodashStable.create(_); @@ -16820,7 +16820,7 @@ }); }); - QUnit.test('`_.' + methodName + '` should return the specified default value for `undefined` values', function(assert) { + QUnit.test('`_.' + methodName + '` should return the default value for `undefined` values', function(assert) { assert.expect(1); var object = { 'a': {} }, @@ -19651,7 +19651,7 @@ (function() { var string = 'hi-diddly-ho there, neighborino'; - QUnit.test('should truncate to a length of `30` by default', function(assert) { + QUnit.test('should use a default `length` of `30`', function(assert) { assert.expect(1); assert.strictEqual(_.truncate(string), 'hi-diddly-ho there, neighbo...'); @@ -19964,7 +19964,7 @@ assert.ok(pass); }); - QUnit.test('_.' + methodName + ' should have a default `wait` of `0`', function(assert) { + QUnit.test('_.' + methodName + ' should use a default `wait` of `0`', function(assert) { assert.expect(1); var done = assert.async();