solved task 2

This commit is contained in:
schrom01
2022-10-20 10:56:45 +02:00
parent b5dfdc4cdd
commit 749fe3a3fb
97 changed files with 19785 additions and 0 deletions
@@ -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
}
}
};
}
});
});