2024-03-29 01:24:40 +00:00
|
|
|
|
import '@testing-library/jest-dom/vitest';
|
2023-12-21 12:39:11 +00:00
|
|
|
|
import { configure } from '@testing-library/react';
|
|
|
|
|
import dotenv from 'dotenv';
|
|
|
|
|
import { vi } from 'vitest';
|
2023-06-07 02:37:10 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 解决 TypeError: URL.createObjectURL is not a function
|
|
|
|
|
* 解决 ReferenceError: Worker is not defined
|
|
|
|
|
*/
|
|
|
|
|
import 'jsdom-worker';
|
2023-12-21 12:39:11 +00:00
|
|
|
|
import path from 'path';
|
2023-06-07 02:37:10 +00:00
|
|
|
|
|
2023-12-21 12:39:11 +00:00
|
|
|
|
configure({ asyncUtilTimeout: 30000 });
|
|
|
|
|
dotenv.config({ path: path.resolve(process.cwd(), '.env.test') });
|
2023-05-25 02:40:08 +00:00
|
|
|
|
|
2023-06-25 07:11:46 +00:00
|
|
|
|
// 解决 TypeError: window.matchMedia is not a function
|
2023-05-25 02:40:08 +00:00
|
|
|
|
// 参见: 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);
|
2023-07-08 00:26:27 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 解决 TypeError: range.getBoundingClientRect is not a function
|
|
|
|
|
* 参见:https://github.com/jsdom/jsdom/issues/3002
|
|
|
|
|
*/
|
|
|
|
|
document.createRange = () => {
|
|
|
|
|
const range = new Range();
|
|
|
|
|
|
|
|
|
|
range.getBoundingClientRect = () => {
|
|
|
|
|
return {
|
|
|
|
|
x: 0,
|
|
|
|
|
y: 0,
|
|
|
|
|
bottom: 0,
|
|
|
|
|
height: 0,
|
|
|
|
|
left: 0,
|
|
|
|
|
right: 0,
|
|
|
|
|
top: 0,
|
|
|
|
|
width: 0,
|
|
|
|
|
toJSON: () => {},
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
range.getClientRects = () => {
|
|
|
|
|
return {
|
|
|
|
|
item: (index) => null,
|
|
|
|
|
length: 0,
|
|
|
|
|
*[Symbol.iterator]() {},
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return range;
|
|
|
|
|
};
|