Merge pull request #9490 from Bouncey/fix/temp-no-testsuite-fix

Temp fix for missing test suite
This commit is contained in:
Mrugesh Mohapatra
2016-07-11 14:17:05 +05:30
committed by GitHub
2 changed files with 0 additions and 2 deletions

View File

@ -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"' :

View File

@ -90,7 +90,6 @@ $(document).ready(function() {
common.submitBtn$
)
.flatMap(() => {
$('#testSuite').fadeOut('slow');
common.appendToOutputDisplay('\n// testing challenge...');
return common.executeChallenge$()
.map(({ tests, ...rest }) => {