File size: 346 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
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() {}
};
};
|