5191a7336a
Added functions/settings for template/snippets directory Now uses templates for new Spec/SpecHelper.js files
13 lines
256 B
JavaScript
13 lines
256 B
JavaScript
beforeEach(function() {
|
|
this.addMatchers({
|
|
|
|
toHaveSomething: function() {
|
|
var summary = this.actual;
|
|
this.actual = summary.clone().wrap('<div>').parent().html();
|
|
|
|
// Magical matcher work goes here.
|
|
|
|
return false;
|
|
},
|
|
});
|