mirror of
https://github.com/oceanprotocol/market.git
synced 2024-12-02 05:57:29 +01:00
14 lines
368 B
JavaScript
14 lines
368 B
JavaScript
|
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()
|
||
|
}))
|
||
|
})
|