2022-10-13 16:22:34 +08:00
|
|
|
/*
|
2024-09-06 22:44:31 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2022-10-13 16:22:34 +08:00
|
|
|
Copyright 2020-2022 The Matrix.org Foundation C.I.C.
|
|
|
|
|
2024-09-06 22:44:31 +08:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2022-10-13 16:22:34 +08:00
|
|
|
*/
|
|
|
|
|
2020-01-16 04:00:50 +08:00
|
|
|
// https://jestjs.io/docs/en/manual-mocks#mocking-methods-which-are-not-implemented-in-jsdom
|
|
|
|
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(),
|
|
|
|
})),
|
|
|
|
});
|
2021-12-06 18:11:06 +08:00
|
|
|
|
|
|
|
// maplibre requires a createObjectURL mock
|
|
|
|
global.URL.createObjectURL = jest.fn();
|