mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-15 09:34:19 +08:00
12 lines
217 B
TypeScript
12 lines
217 B
TypeScript
import '@testing-library/jest-dom/extend-expect';
|
|
|
|
window.matchMedia =
|
|
window.matchMedia ||
|
|
(function () {
|
|
return {
|
|
matches: false,
|
|
addListener() {},
|
|
removeListener() {},
|
|
};
|
|
} as any);
|