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