wix-style-react
Version:
wix-style-react
14 lines • 501 B
JavaScript
/** specific functions and variables for test environment purposes */
export const getPopoverTestUtils = {
createRange: () => {
document.createRange = () => ({
setStart: () => null,
setEnd: () => null,
commonAncestorContainer: document.documentElement.querySelector('body'),
});
},
generateId: () => Math.floor((1 + Math.random()) * 0x10000)
.toString(16)
.substring(1),
};
//# sourceMappingURL=getPopoverTestUtils.js.map