react-code-dataset / recharts /test /vitest.global-setup.ts
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
209 Bytes
export const setup = () => {
process.env.TZ = 'UTC';
// @ts-expect-error TODO remove the requestAnimationFrame override
global.requestAnimationFrame = (callback: () => void) => {
callback();
};
};