diff --git a/test/harness/helper.js b/test/harness/helper.js index f636d073a39fd4eaa5803ce1ff9f21878a600df2..adf96c02db63c0eddac6a676d4c916bdaed770f8 100644 --- a/test/harness/helper.js +++ b/test/harness/helper.js @@ -42,6 +42,7 @@ function Presenter() { updateCounts(); + //TODO: eventually remove this guard. if(test.result === 'fail') { logResult(test); } @@ -71,7 +72,7 @@ function Presenter() { $('.button-start').attr('src', 'resources/images/start.png'); $('.button-start').fadeOut('fast'); - //progressBar.text("Testing complete!"); + progressBar.find(".text").html("Testing complete!"); if (isSiteDebugMode()) { this.activityBar.text('Overall Execution Time: ' + elapsed + ' minutes'); } else { diff --git a/website/resources/scripts/global/helper.js b/website/resources/scripts/global/helper.js index f636d073a39fd4eaa5803ce1ff9f21878a600df2..adf96c02db63c0eddac6a676d4c916bdaed770f8 100644 --- a/website/resources/scripts/global/helper.js +++ b/website/resources/scripts/global/helper.js @@ -42,6 +42,7 @@ function Presenter() { updateCounts(); + //TODO: eventually remove this guard. if(test.result === 'fail') { logResult(test); } @@ -71,7 +72,7 @@ function Presenter() { $('.button-start').attr('src', 'resources/images/start.png'); $('.button-start').fadeOut('fast'); - //progressBar.text("Testing complete!"); + progressBar.find(".text").html("Testing complete!"); if (isSiteDebugMode()) { this.activityBar.text('Overall Execution Time: ' + elapsed + ' minutes'); } else {