@mui/x-charts
Version:
The community edition of the Charts components (MUI X).
35 lines • 818 B
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
import { fireEvent } from '@mui/internal-test-utils';
export function firePointerEvent(target, type, options) {
const originalGetBoundingClientRect = target.getBoundingClientRect;
target.getBoundingClientRect = () => ({
x: 0,
y: 0,
bottom: 0,
height: 0,
left: 0,
right: 0,
top: 0,
width: 0,
toJSON() {
return {
x: 0,
y: 0,
bottom: 0,
height: 0,
left: 0,
right: 0,
top: 0,
width: 0
};
}
});
const event = new window.PointerEvent(type, _extends({
bubbles: true,
cancelable: true,
composed: true,
isPrimary: true
}, options));
fireEvent(target, event);
target.getBoundingClientRect = originalGetBoundingClientRect;
}