Remove 'source loading:' log messages from tests

Not really necessary now that we have actual tracebacks.
This commit is contained in:
Andrew Stewart 2014-02-27 20:59:21 -08:00
parent 09b30bbffa
commit 473e0ab08f
2 changed files with 0 additions and 4 deletions

View File

@ -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);
};

View File

@ -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);
};