Skip to content

Commit

Permalink
removed some log statements
Browse files Browse the repository at this point in the history
  • Loading branch information
beatfactor committed Jul 15, 2015
1 parent 6226fae commit 1ab6e51
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions lib/runner/testcase.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,6 @@ TestCase.prototype.run = function () {

return self.suite.afterEach(response.results, response.errors);
}, function onError(error) {
console.log(error.stack)
deferred.reject(error);
})
.then(function() {
Expand All @@ -135,4 +134,4 @@ TestCase.prototype.run = function () {
return deferred.promise;
};

module.exports = TestCase;
module.exports = TestCase;
1 change: 0 additions & 1 deletion lib/runner/testsuite.js
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,6 @@ TestSuite.prototype.adaptDoneCallback = function(done, hookName, deferred) {
throw new Error('done() callback timeout was reached while executing '+ hookName + '.' +
' Make sure to call the done() callback when the operation finishes.');
} catch (err) {
console.log(err)
deferred.reject(err);
}
}, ASYNC_HOOK_TIMEOUT);
Expand Down

0 comments on commit 1ab6e51

Please sign in to comment.