diff --git a/tests/unit/dataSource/properties/tests.html b/tests/unit/dataSource/properties/tests.html index 26844e073..189ed4c23 100644 --- a/tests/unit/dataSource/properties/tests.html +++ b/tests/unit/dataSource/properties/tests.html @@ -13,6 +13,8 @@ diff --git a/tests/unit/loader/tests.html b/tests/unit/loader/tests.html index 9f01054d1..e4582be9d 100644 --- a/tests/unit/loader/tests.html +++ b/tests/unit/loader/tests.html @@ -117,7 +117,7 @@ //check if expected resources are loaded var scripts = $(document).find("head > script"), actualPaths = []; scripts.each(function () { - console.log("script.src: " + this.src) + //console.log("script.src: " + this.src) if (this.src.indexOf("ignite-ui/src/js/") > 0) { var array = this.src.split("/"); actualPaths.push(array[array.length - 1]); @@ -126,7 +126,7 @@ links = $(document).find("head > link"); links.each(function () { - console.log("link.href: " + this.href) + //console.log("link.href: " + this.href) if (this.href.indexOf("ignite-ui/src/css/") > 0) { var array = this.href.split("/"); actualPaths.push(array[array.length - 1]); diff --git a/tests/unit/toolbar/tests.html b/tests/unit/toolbar/tests.html index 604236e30..45b1d871c 100644 --- a/tests/unit/toolbar/tests.html +++ b/tests/unit/toolbar/tests.html @@ -121,7 +121,9 @@ type: 'button', scope: this, title: 'Simple button', - callbackRenderer: function() { console.log('callbackRenderer called'); }, + callbackRenderer: function() { + //console.log('callbackRenderer called'); + }, handler: function(ui) { console.log('Activated'); },