Skip to content

Commit

Permalink
Merge pull request #228 from damyanpetev/travis-bower-deploy
Browse files Browse the repository at this point in the history
Travis bower deploy
  • Loading branch information
kdinev authored Aug 17, 2016
2 parents b411083 + 366a507 commit 29a0f6e
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ module.exports = function (grunt) {
jshint: ["jshint"],
jscs: ["jscs"],
tests: ["qunit", "coverage", "instrumentedFiles"],
build: ["dist"]
build: ["dist/**/*", "!dist/.git/**/*"]
},
coveralls: {
// LCOV coverage file (can be string, glob or array)
Expand Down
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 29a0f6e

Please sign in to comment.