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