diff --git a/static/debug.html b/static/debug.html index 4bad09d0f..772c1fd9d 100644 --- a/static/debug.html +++ b/static/debug.html @@ -24,9 +24,12 @@ complete: function() {}, store: function() {}, result: window.console ? function(result) { - if (result.skipped) return; - var msg = result.success ? 'SUCCESS ' : 'FAILED '; + var msg = result.skipped ? 'SKIPPED' : (result.success ? 'SUCCESS ' : 'FAILED '); window.console.log(msg + result.suite.join(' ') + ' ' + result.description); + + for (var i = 0; i < result.log.length; i++) { + window.console.error(result.log[i]); + } } : function() {}, loaded: function() { this.start();