2025-06-16 18:28:08 +05:00

11 lines
232 B
JavaScript
Executable File

/*
beforeEach(function() {
this.addMatchers({
toBePlaying: function(expectedSong) {
var player = this.actual;
return player.currentlyPlayingSong === expectedSong &&
player.isPlaying;
}
});
});
*/