New example project.

Generate jasmine-standalone-x.x.x.zip.
This commit is contained in:
Lee Byrd & Christian Williams
2010-06-24 17:15:06 -07:00
parent 22065fafad
commit 1057596665
9 changed files with 174 additions and 45 deletions

View File

@@ -0,0 +1,9 @@
beforeEach(function() {
this.addMatchers({
toBePlaying: function(expectedSong) {
var player = this.actual;
return player.currentlyPlayingSong === expectedSong
&& player.isPlaying;
}
})
});