mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-30 08:26:59 +02:00
18 lines
410 B
JavaScript
18 lines
410 B
JavaScript
require('../../jest.base-setup.js')();
|
|
|
|
// Prevents the CodeMirror error "getClientRects is undefined".
|
|
// See https://github.com/jsdom/jsdom/issues/3002#issue-652790925
|
|
document.createRange = () => {
|
|
const range = new Range();
|
|
range.getBoundingClientRect = jest.fn();
|
|
range.getClientRects = () => {
|
|
return {
|
|
length: 0,
|
|
item: () => null,
|
|
[Symbol.iterator]: jest.fn(),
|
|
};
|
|
};
|
|
|
|
return range;
|
|
};
|