Files
OverlayScrollbars/local/config/src/jest.setup.js
T
2022-08-10 02:09:20 +02:00

6 lines
201 B
JavaScript

// remove jsdom warning for not implemented second argument for window.getComputedStyle
try {
const cmptdStyle = window.getComputedStyle;
window.getComputedStyle = (a) => cmptdStyle(a);
} catch {}