799c7e6936
Co-authored-by: Denys Konovalov <kontakt@denyskon.de> Co-authored-by: Mathieu COSYNS <64072917+Mathieu-COSYNS@users.noreply.github.com>
34 lines
711 B
JavaScript
34 lines
711 B
JavaScript
if (typeof window === 'undefined') {
|
|
global.window = {
|
|
URL: {
|
|
createObjectURL: jest.fn(),
|
|
},
|
|
localStorage: {
|
|
removeItem: jest.fn(),
|
|
getItem: jest.fn(),
|
|
},
|
|
navigator: {
|
|
platform: 'Win',
|
|
},
|
|
matchMedia: () => ({
|
|
matches: false,
|
|
}),
|
|
};
|
|
}
|
|
|
|
global.URL.createObjectURL = jest.fn();
|
|
|
|
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(),
|
|
})),
|
|
});
|