Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
346 Bytes
import "@testing-library/jest-dom/extend-expect";
import "regenerator-runtime/runtime";
//Fix for "matchMedia not present, legacy browsers require a polyfill jest" error
window.matchMedia =
window.matchMedia ||
function() {
return {
matches: false,
addListener: function() {},
removeListener: function() {}
};
};