Merge pull request #9490 from Bouncey/fix/temp-no-testsuite-fix
Temp fix for missing test suite
This commit is contained in:
@ -2,7 +2,6 @@ window.common = (function({ $, common = { init: [] }}) {
|
|||||||
|
|
||||||
common.displayTestResults = function displayTestResults(data = [], down) {
|
common.displayTestResults = function displayTestResults(data = [], down) {
|
||||||
$('#testSuite').children().remove();
|
$('#testSuite').children().remove();
|
||||||
$('#testSuite').fadeIn('slow');
|
|
||||||
data.forEach(({ err = false, text = '' }) => {
|
data.forEach(({ err = false, text = '' }) => {
|
||||||
var iconClass = err ?
|
var iconClass = err ?
|
||||||
'"ion-close-circled big-error-icon"' :
|
'"ion-close-circled big-error-icon"' :
|
||||||
|
@ -90,7 +90,6 @@ $(document).ready(function() {
|
|||||||
common.submitBtn$
|
common.submitBtn$
|
||||||
)
|
)
|
||||||
.flatMap(() => {
|
.flatMap(() => {
|
||||||
$('#testSuite').fadeOut('slow');
|
|
||||||
common.appendToOutputDisplay('\n// testing challenge...');
|
common.appendToOutputDisplay('\n// testing challenge...');
|
||||||
return common.executeChallenge$()
|
return common.executeChallenge$()
|
||||||
.map(({ tests, ...rest }) => {
|
.map(({ tests, ...rest }) => {
|
||||||
|
Reference in New Issue
Block a user