element-web/test/jest-mocks.ts

26 lines
800 B
TypeScript
Raw Normal View History

2022-10-13 10:22:34 +02:00
/*
2024-09-06 16:44:31 +02:00
Copyright 2024 New Vector Ltd.
2022-10-13 10:22:34 +02:00
Copyright 2020-2022 The Matrix.org Foundation C.I.C.
2024-09-06 16:44:31 +02: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 10:22:34 +02:00
*/
2020-01-15 21:00:50 +01:00
// https://jestjs.io/docs/en/manual-mocks#mocking-methods-which-are-not-implemented-in-jsdom
2022-12-09 13:28:29 +01:00
Object.defineProperty(window, "matchMedia", {
2020-01-15 21:00:50 +01:00
writable: true,
2022-12-09 13:28:29 +01:00
value: jest.fn().mockImplementation((query) => ({
2020-01-15 21:00:50 +01:00
matches: false,
media: query,
onchange: null,
addListener: jest.fn(), // deprecated
removeListener: jest.fn(), // deprecated
addEventListener: jest.fn(),
removeEventListener: jest.fn(),
dispatchEvent: jest.fn(),
})),
});
// maplibre requires a createObjectURL mock
global.URL.createObjectURL = jest.fn();