加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
jest.config.js 1.02 KB
一键复制 编辑 原始数据 按行查看 历史
module.exports = {
globals: {
"ts-jest": {
isolatedModules: true
}
},
//用作Jest配置基础的预设。预设应指向根目录为jest-preset.json或jest-preset.js文件的npm模块。
preset: 'ts-jest/presets/js-with-ts',
//测试环境
testEnvironment: 'jsdom',
// testRegex: 'packages/core/__tests__/.*\\.(test|spec)?\\.(ts|tsx)$',
testMatch: [
// '/packages/core/__tests__/.*\\.(test|spec)?\\.(ts|tsx)$',
// "**/__tests__/**/*.[jt]s?(x)",
"**/packages/*/__tests__/**/?(*.)+(spec|test).[jt]s?(x)"
],
//启动入口
setupFiles: [
// './tests/init.ts'
],
//覆盖率报告输出文件夹
coverageDirectory: './docs/testReport/',
//设置全局变量
// globals: {
// CC_DEV: true,
// CC_TEST: true,
// CC_PHYSICS_BUILTIN: true,
// 'ts-jest': {
// diagnostics: false
// }
// }
testPathIgnorePatterns: [
"/(node_modules|lib|coverage|types|jestTest)/"
]
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化