1
0
mirror of https://github.com/2ec0b4/kaamelott-soundboard.git synced 2025-12-08 15:43:24 +00:00
Files
kaamelott-soundboard/docs/bower_components/backbone.babysitter/spec/javascripts/helpers/jasmineMatchers.js
2023-10-30 08:06:39 +01:00

9 lines
196 B
JavaScript

beforeEach(function() {
jasmine.addMatchers({
toHaveOwnProperty: function(expectedProperty) {
var obj = this.actual;
return obj.hasOwnProperty(expectedProperty);
}
});
});