9 lines
192 B
JavaScript
9 lines
192 B
JavaScript
beforeEach(function() {
|
|
var parent = this.getMatchersClass_();
|
|
this.addMatchers({
|
|
toBeA: function(type) {
|
|
return this.actual instanceof type;
|
|
}
|
|
});
|
|
});
|