fix(jest): adjust config

This commit is contained in:
nemo-shen 2021-12-13 23:44:51 +08:00 committed by neverland
parent 45ccdbb208
commit 71962ce369

View File

@ -5,14 +5,15 @@ module.exports = {
testURL: 'https://jest.test',
moduleFileExtensions: ['js', 'ts'],
testMatch: ['<rootDir>/packages/**/test/**/*.spec.{js,ts}'],
transformIgnorePatterns: ["/node_modules/(?!@vant/)"],
transform: {
"^.+\\.jsx?$": "babel-jest", // Adding this line solved the issue
"^.+\\.tsx?$": "ts-jest"
"^.+\\.js?$": "babel-jest", // Adding this line solved the issue
"^.+\\.ts?$": "ts-jest"
},
collectCoverageFrom: [
'<rootDir>/packages/**/*.{js,ts}',
'!**/test/**'
],
preset: "ts-jest",
snapshotSerializers: ['miniprogram-simulate/jest-snapshot-plugin'],
snapshotSerializers: ['miniprogram-simulate/jest-snapshot-plugin']
}