Files
OverlayScrollbars/local/config/src/vitest.setup.js
T
2022-10-26 18:59:55 +02:00

11 lines
320 B
JavaScript

import matchers from '@testing-library/jest-dom/matchers';
import { expect } from 'vitest';
expect.extend(matchers);
// remove jsdom warning for not implemented second argument for window.getComputedStyle
try {
const cmptdStyle = window.getComputedStyle;
window.getComputedStyle = (a) => cmptdStyle(a);
} catch {}