diff --git a/client/commonFramework/display-test-results.js b/client/commonFramework/display-test-results.js index 0647384c87..df09d26734 100644 --- a/client/commonFramework/display-test-results.js +++ b/client/commonFramework/display-test-results.js @@ -2,7 +2,6 @@ window.common = (function({ $, common = { init: [] }}) { common.displayTestResults = function displayTestResults(data = [], down) { $('#testSuite').children().remove(); - $('#testSuite').fadeIn('slow'); data.forEach(({ err = false, text = '' }) => { var iconClass = err ? '"ion-close-circled big-error-icon"' : diff --git a/client/commonFramework/end.js b/client/commonFramework/end.js index 1a8ae7be86..4f22de3e28 100644 --- a/client/commonFramework/end.js +++ b/client/commonFramework/end.js @@ -89,7 +89,6 @@ $(document).ready(function() { common.submitBtn$ ) .flatMap(() => { - $('#testSuite').fadeOut('slow'); common.appendToOutputDisplay('\n// testing challenge...'); return common.executeChallenge$() .map(({ tests, ...rest }) => {