Skip to content

Commit

Permalink
(chore) keeping the build log clean
Browse files Browse the repository at this point in the history
  • Loading branch information
damyanpetev committed Aug 17, 2016
1 parent 41c16ba commit 366a507
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
2 changes: 2 additions & 0 deletions tests/unit/dataSource/properties/tests.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
<script type="text/javascript" src="../../../../bower_components/qunit/qunit/qunit.js"></script>

<script type="text/javascript">
$.mockjaxSettings.logging = 0; // only critical error messages

function filerFunc2(val) {
return val < 2 ? true : false;
};
Expand Down
2 changes: 2 additions & 0 deletions tests/unit/dataSource/rest/tests.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions tests/unit/loader/tests.html
Original file line number Diff line number Diff line change
Expand Up @@ -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]);
Expand All @@ -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]);
Expand Down
4 changes: 3 additions & 1 deletion tests/unit/toolbar/tests.html
Original file line number Diff line number Diff line change
Expand Up @@ -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');
},
Expand Down

0 comments on commit 366a507

Please sign in to comment.