vue3-yuanma/jest.config.js

29 lines
808 B
JavaScript
Raw Normal View History

2018-09-19 15:36:56 -04:00
module.exports = {
preset: 'ts-jest',
2018-09-19 17:45:19 -04:00
globals: {
__DEV__: true,
2019-11-04 11:24:22 -05:00
__TEST__: true,
2019-12-10 18:24:59 -05:00
__VERSION__: require('./package.json').version,
__BROWSER__: false,
__BUNDLER__: false,
__RUNTIME_COMPILE__: true,
2019-09-03 22:25:38 -04:00
__FEATURE_OPTIONS__: true,
2019-09-09 16:28:32 -04:00
__FEATURE_SUSPENSE__: true
2018-09-19 17:45:19 -04:00
},
2018-09-19 15:36:56 -04:00
coverageDirectory: 'coverage',
coverageReporters: ['html', 'lcov', 'text'],
collectCoverageFrom: [
'packages/*/src/**/*.ts',
2019-12-11 09:46:52 -05:00
'!packages/runtime-test/src/utils/**',
2019-11-04 18:41:40 -05:00
'!packages/template-explorer/**',
2019-12-11 09:46:52 -05:00
'!packages/size-check/**'
],
watchPathIgnorePatterns: ['/node_modules/'],
moduleFileExtensions: ['ts', 'tsx', 'js', 'json'],
2018-09-19 15:36:56 -04:00
moduleNameMapper: {
'^@vue/(.*?)$': '<rootDir>/packages/$1/src'
},
rootDir: __dirname,
testMatch: ['<rootDir>/packages/**/__tests__/**/*spec.[jt]s?(x)']
2018-09-19 15:36:56 -04:00
}