29 Star 386 Fork 78

theajack / cnchar

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
jest.config.js 1.29 KB
一键复制 编辑 原始数据 按行查看 历史
theajack 提交于 2022-04-06 11:13 . feat: 🚀 github workflow完成
module.exports = {
preset: 'ts-jest/presets/js-with-babel',
testEnvironment: 'jsdom',
// roots: ['./src/'],
// testEnvironment: 'jest-environment-jsdom-global',
testEnvironmentOptions: {
userAgent: 'Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1'
},
collectCoverage: true,
coverageDirectory: './coverage/',
// collectCoverageFrom: [
// 'packages/*/src/**/*.ts'],
verbose: false,
// testPathIgnorePatterns: ['<rootDir>/node_modules/', '<rootDir>/packages/simulator/'],
// coveragePathIgnorePatterns: ['<rootDir>/node_modules/', '<rootDir>/packages/simulator/'],
globals: {
__TEST__: true,
__VERSION__: require('./package.json').version,
ontouchstart: null
},
moduleFileExtensions: ['ts', 'tsx', 'js', 'json'],
moduleNameMapper: {
'^cnchar$': '<rootDir>/src/cnchar/main',
'^cnchar-types$': '<rootDir>/src/cnchar-types',
'^@cnchar-plugin/(.*?)$': '<rootDir>/src/cnchar/plugin/$1',
'^testUtils$': '<rootDir>/helper/testUtils',
},
testRegex: 'src/cnchar/main/__tests__/(.*).spec.ts?$',
modulePathIgnorePatterns: [
'npm/packages/cnchar/package.json',
'./package.json'
],
};
TypeScript
1
https://gitee.com/theajack/cnchar.git
git@gitee.com:theajack/cnchar.git
theajack
cnchar
cnchar
master

搜索帮助