LibreChat / client /test /matchMedia.mock
AchyuthGamer's picture
Upload 683 files
9705b6c
raw
history blame contribute delete
No virus
370 Bytes
Object.defineProperty(window, 'matchMedia', {
writable: true,
value: jest.fn().mockImplementation((query) => ({
matches: false,
media: query,
onchange: null,
addListener: jest.fn(), // deprecated
removeListener: jest.fn(), // deprecated
addEventListener: jest.fn(),
removeEventListener: jest.fn(),
dispatchEvent: jest.fn(),
})),
});