20 lines
568 B
JavaScript
20 lines
568 B
JavaScript
|
var baseTemplate = window.document.body.innerHTML;
|
||
|
var wrapper = document.createElement('div');
|
||
|
wrapper.id = 'jasmineWrapper';
|
||
|
document.body.appendChild(wrapper);
|
||
|
|
||
|
beforeEach(function() {
|
||
|
jasmineWrapper.innerHTML = '';
|
||
|
|
||
|
jasmine.addMatchers({
|
||
|
toBeApprox: function() {
|
||
|
return {
|
||
|
compare: function(actual, expected, within) {
|
||
|
within = within || 1;
|
||
|
return { pass: (actual >= (expected - within)) && (actual <= (expected + within)) };
|
||
|
}
|
||
|
};
|
||
|
}
|
||
|
});
|
||
|
});
|