11 lines
232 B
JavaScript
11 lines
232 B
JavaScript
|
/*
|
||
|
beforeEach(function() {
|
||
|
this.addMatchers({
|
||
|
toBePlaying: function(expectedSong) {
|
||
|
var player = this.actual;
|
||
|
return player.currentlyPlayingSong === expectedSong &&
|
||
|
player.isPlaying;
|
||
|
}
|
||
|
});
|
||
|
});
|
||
|
*/
|