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 149ef4e777..7dec122ff7 100644 --- a/client/commonFramework/end.js +++ b/client/commonFramework/end.js @@ -90,7 +90,6 @@ $(document).ready(function() { common.submitBtn$ ) .flatMap(() => { - $('#testSuite').fadeOut('slow'); common.appendToOutputDisplay('\n// testing challenge...'); return common.executeChallenge$() .map(({ tests, ...rest }) => {