react-code-dataset / hooks /jest.setup.js
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
368 Bytes
// mock screen full events
// https://github.com/sindresorhus/screenfull/blob/main/index.js
const screenfullMethods = [
'requestFullscreen',
'exitFullscreen',
'fullscreenElement',
'fullscreenEnabled',
'fullscreenchange',
'fullscreenerror',
];
screenfullMethods.forEach((item) => {
document[item] = () => {};
HTMLElement.prototype[item] = () => {};
});