Temp fix for missing test suite

This commit is contained in:
Stuart
2016-07-01 15:47:06 +01:00
parent 0ca9afb497
commit 7292c25c5a
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

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