gulp now copies assets from assets folder, build folder is now ignored by git

This commit is contained in:
Senad Uka
2014-12-21 07:18:38 +01:00
parent 2a7ff5bc3b
commit 8106a0f375
27 changed files with 36 additions and 47077 deletions

View File

@@ -0,0 +1,15 @@
beforeEach(function () {
jasmine.addMatchers({
toBePlaying: function () {
return {
compare: function (actual, expected) {
var player = actual;
return {
pass: player.currentlyPlayingSong === expected && player.isPlaying
}
}
};
}
});
});