Remove console.logs
This commit is contained in:
@ -3,7 +3,6 @@ window.common = (function({ $, common = { init: [] }}) {
|
||||
common.displayTestResults = function displayTestResults(data = []) {
|
||||
$('#testSuite').children().remove();
|
||||
data.forEach(({ err = false, text = '' }) => {
|
||||
console.log('err', err);
|
||||
var iconClass = err ?
|
||||
'"ion-close-circled big-error-icon"' :
|
||||
'"ion-checkmark-circled big-success-icon"';
|
||||
|
@ -11,7 +11,6 @@ $(document).ready(function() {
|
||||
.debounce(750)
|
||||
.map(() => common.editor.getValue())
|
||||
.distinctUntilChanged()
|
||||
.doOnNext(() => console.log('updating value'))
|
||||
.shareReplay();
|
||||
|
||||
// update storage
|
||||
@ -41,7 +40,6 @@ $(document).ready(function() {
|
||||
if (err) {
|
||||
return console.error(err);
|
||||
}
|
||||
console.log('updating preview');
|
||||
},
|
||||
err => console.error(err)
|
||||
);
|
||||
|
@ -125,7 +125,6 @@ var paths = {
|
||||
'run-tests-stream',
|
||||
'show-completion',
|
||||
'step-challenge',
|
||||
'test-script-stream',
|
||||
'update-preview',
|
||||
'end'
|
||||
],
|
||||
|
Reference in New Issue
Block a user