加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/react-pdf-viewer/react-pdf-viewer
克隆/下载
jest.config.ts 1.09 KB
一键复制 编辑 原始数据 按行查看 历史
import { type Config } from 'jest';
const config: Config = {
moduleNameMapper: {
'@react-pdf-viewer/core': '<rootDir>/packages/core/src',
'@react-pdf-viewer/default-layout': '<rootDir>/packages/default-layout/src',
// In order to load the PDF document in node, we use the ES5 build
// For pdfjs-dist 2.7.570+
'pdfjs-dist': '<rootDir>/node_modules/pdfjs-dist/legacy/build/pdf',
// For pdfjs-dist 2.6.347
// 'pdfjs-dist': '<rootDir>/node_modules/pdfjs-dist/es5/build/pdf',
// Polyfill `Path2D` required by pdfjs
'path2d-polyfill': '<rootDir>/node_modules/path2d-polyfill',
},
setupFilesAfterEnv: ['<rootDir>/__setups__/setupTests.ts'],
testEnvironment: 'jsdom',
// Uncomment the `testMatch` option when we want to run a specific test case
// testMatch: ['<rootDir>/packages/thumbnail/__tests__/coverWidth.test.tsx'],
testRegex: ['(/__tests__/.*|(\\.|/)(test|spec))\\.tsx$'],
testTimeout: 20 * 1000, // 20s
transform: {
'^.+\\.tsx?$': 'ts-jest',
},
verbose: true,
};
export default config;
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化