2023-05-25 02:40:08 +00:00
|
|
|
|
import '@testing-library/jest-dom';
|
2023-06-07 02:37:10 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 解决 TypeError: URL.createObjectURL is not a function
|
|
|
|
|
* 解决 ReferenceError: Worker is not defined
|
|
|
|
|
*/
|
|
|
|
|
import 'jsdom-worker';
|
|
|
|
|
|
2023-05-25 02:40:08 +00:00
|
|
|
|
import { vi } from 'vitest';
|
|
|
|
|
import '../packages/core/client/src/i18n';
|
|
|
|
|
|
|
|
|
|
// 解决 ypeError: window.matchMedia is not a function
|
|
|
|
|
// 参见: https://github.com/vitest-dev/vitest/issues/821#issuecomment-1046954558
|
|
|
|
|
Object.defineProperty(window, 'matchMedia', {
|
|
|
|
|
writable: true,
|
|
|
|
|
value: vi.fn().mockImplementation((query) => ({
|
|
|
|
|
matches: false,
|
|
|
|
|
media: query,
|
|
|
|
|
onchange: null,
|
|
|
|
|
addListener: vi.fn(), // deprecated
|
|
|
|
|
removeListener: vi.fn(), // deprecated
|
|
|
|
|
addEventListener: vi.fn(),
|
|
|
|
|
removeEventListener: vi.fn(),
|
|
|
|
|
dispatchEvent: vi.fn(),
|
|
|
|
|
})),
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// 解决 Error: Not implemented: window.computedStyle(elt, pseudoElt)
|
|
|
|
|
// 参见:https://github.com/nickcolley/jest-axe/issues/147#issuecomment-758804533
|
|
|
|
|
const { getComputedStyle } = window;
|
|
|
|
|
window.getComputedStyle = (elt) => getComputedStyle(elt);
|