mirror of
https://github.com/nocobase/nocobase
synced 2024-11-16 13:19:13 +00:00
261d4c4137
* chore: use vitest to replace jest * chore: support vitest * feat: vitest 1.0 * fix: test * chore: yarn.lock * chore: github actions * fix: test * fix: test * fix: test * fix: test * fix: jest.fn * fix: require * fix: test * fix: build * fix: test * fix: test * fix: test * fix: test * fix: test * fix: test * fix: test * fix: dynamic import * fix: bug * chore: yarn run test command * chore: package.json * chore: package.json * chore: vite 5 * fix: fix variable test * fix: import json * feat: initEnv * fix: env.APP_ENV_PATH * chore: get package json * fix: remove GlobalThmeProvider * chore: update snap * chore: test env * chore: test env * chore: import module * chore: jest * fix: load package json * chore: test * fix: bug * chore: test * chore: test * chore: test * chore: test * chore: test * fix: import file in windows * chore: import module with absolute file path * fix: test error * test: update snapshot * chore: update yarn.lock * fix: front-end tests do not include utils folder * refactor: use vitest-dom * fix: fix build * fix: test error * fix: change to vitest.config.mts * fix: types error * fix: types error * fix: types error * fix: error * fix: test * chore: test * fix: test package * feat: update dependencies * refactor: test * fix: error * fix: error * fix: __dirname is not defined in ES module scope * fix: allow only * fix: error * fix: error * fix: error * fix: create-app * fix: install-deps * feat: update docs --------- Co-authored-by: chenos <chenlinxh@gmail.com> Co-authored-by: dream2023 <1098626505@qq.com> Co-authored-by: Zeke Zhang <958414905@qq.com>
68 lines
1.7 KiB
TypeScript
68 lines
1.7 KiB
TypeScript
import { configure } from '@testing-library/react';
|
||
import dotenv from 'dotenv';
|
||
import { vi } from 'vitest';
|
||
import 'vitest-dom/extend-expect';
|
||
|
||
/**
|
||
* 解决 TypeError: URL.createObjectURL is not a function
|
||
* 解决 ReferenceError: Worker is not defined
|
||
*/
|
||
import 'jsdom-worker';
|
||
import path from 'path';
|
||
|
||
configure({ asyncUtilTimeout: 30000 });
|
||
dotenv.config({ path: path.resolve(process.cwd(), '.env.test') });
|
||
|
||
// 解决 TypeError: 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);
|
||
|
||
/**
|
||
* 解决 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;
|
||
};
|