grunt-contrib-jasmine/test/fixtures/pivotal/spec/SpecHelper.js
2013-11-20 16:46:27 -08:00

16 lines
413 B
JavaScript
Executable File

beforeEach(function () {
jasmine.Expectation.addMatchers({
toBePlaying: function () {
return {
compare: function (actual, expected) {
var player = actual;
return {
pass: player.currentlyPlayingSong === expected && player.isPlaying
}
}
};
}
});
});