mirror of
https://github.com/tenrok/OverlayScrollbars.git
synced 2026-06-06 09:42:26 +03:00
11 lines
320 B
JavaScript
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 {}
|