File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 2096
2096
}
2097
2097
});
2098
2098
2099
- QUnit.test('should enable chaining of methods that return unwrapped values by default ', function(assert) {
2099
+ QUnit.test('should enable chaining for methods that return unwrapped values', function(assert) {
2100
2100
assert.expect(6);
2101
2101
2102
2102
if (!isNpm) {
13786
13786
}
13787
13787
});
13788
13788
13789
- QUnit.test('should use `this` as the default `object` value ', function(assert) {
13789
+ QUnit.test('should use a default `object` of `this` ', function(assert) {
13790
13790
assert.expect(3);
13791
13791
13792
13792
var object = lodashStable.create(_);
16820
16820
});
16821
16821
});
16822
16822
16823
- QUnit.test('`_.' + methodName + '` should return the specified default value for `undefined` values', function(assert) {
16823
+ QUnit.test('`_.' + methodName + '` should return the default value for `undefined` values', function(assert) {
16824
16824
assert.expect(1);
16825
16825
16826
16826
var object = { 'a': {} },
19651
19651
(function() {
19652
19652
var string = 'hi-diddly-ho there, neighborino';
19653
19653
19654
- QUnit.test('should truncate to a length of `30` by default ', function(assert) {
19654
+ QUnit.test('should use a default ` length` of `30`', function(assert) {
19655
19655
assert.expect(1);
19656
19656
19657
19657
assert.strictEqual(_.truncate(string), 'hi-diddly-ho there, neighbo...');
19964
19964
assert.ok(pass);
19965
19965
});
19966
19966
19967
- QUnit.test('_.' + methodName + ' should have a default `wait` of `0`', function(assert) {
19967
+ QUnit.test('_.' + methodName + ' should use a default `wait` of `0`', function(assert) {
19968
19968
assert.expect(1);
19969
19969
19970
19970
var done = assert.async();
You can’t perform that action at this time.
0 commit comments