Avoid chatty console.log.

This commit is contained in:
John-David Dalton
2016-01-15 22:56:38 -08:00
parent 6949f71516
commit 6bc0aba800
2 changed files with 5 additions and 3 deletions

View File

@@ -15,6 +15,7 @@
/** Method and object shortcuts. */
var phantom = root.phantom,
amd = root.define && define.amd,
argv = root.process && process.argv,
document = !phantom && root.document,
noop = function() {},
slice = arrayProto.slice,
@@ -65,7 +66,9 @@
/*--------------------------------------------------------------------------*/
console.log('Running lodash/fp tests.');
if (argv) {
console.log('Running lodash/fp tests.');
}
QUnit.module('method arity checks');

View File

@@ -636,9 +636,8 @@
/*--------------------------------------------------------------------------*/
console.log('Running lodash tests.');
if (params) {
console.log('Running lodash tests.');
console.log('test.js invoked with arguments: ' + JSON.stringify(slice.call(params)));
}