Remove 'source loading:' log messages from tests
Not really necessary now that we have actual tracebacks.
This commit is contained in:
parent
09b30bbffa
commit
473e0ab08f
|
@ -23,9 +23,7 @@ global.stub = sinon.stub;
|
|||
// can be used by test modules to require production modules,
|
||||
// relative to the base path (where the Gruntfile.js also lives)
|
||||
global.source = function (src) {
|
||||
console.log('source loading: ' + src)
|
||||
var resource = path.normalize('../../lib/' + src);
|
||||
|
||||
return require(resource);
|
||||
};
|
||||
|
||||
|
|
|
@ -23,9 +23,7 @@ global.stub = sinon.stub
|
|||
// can be used by test modules to require production modules,
|
||||
// relative to the base path (where the Gruntfile.js also lives)
|
||||
global.source = function (src) {
|
||||
console.log('source loading: ' + src)
|
||||
var resource = path.normalize('../../lib/' + src);
|
||||
|
||||
return require(resource);
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue