mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 02:12:43 +08:00
fix(jest): adjust config
This commit is contained in:
parent
45ccdbb208
commit
71962ce369
@ -5,14 +5,15 @@ module.exports = {
|
|||||||
testURL: 'https://jest.test',
|
testURL: 'https://jest.test',
|
||||||
moduleFileExtensions: ['js', 'ts'],
|
moduleFileExtensions: ['js', 'ts'],
|
||||||
testMatch: ['<rootDir>/packages/**/test/**/*.spec.{js,ts}'],
|
testMatch: ['<rootDir>/packages/**/test/**/*.spec.{js,ts}'],
|
||||||
|
transformIgnorePatterns: ["/node_modules/(?!@vant/)"],
|
||||||
transform: {
|
transform: {
|
||||||
"^.+\\.jsx?$": "babel-jest", // Adding this line solved the issue
|
"^.+\\.js?$": "babel-jest", // Adding this line solved the issue
|
||||||
"^.+\\.tsx?$": "ts-jest"
|
"^.+\\.ts?$": "ts-jest"
|
||||||
},
|
},
|
||||||
collectCoverageFrom: [
|
collectCoverageFrom: [
|
||||||
'<rootDir>/packages/**/*.{js,ts}',
|
'<rootDir>/packages/**/*.{js,ts}',
|
||||||
'!**/test/**'
|
'!**/test/**'
|
||||||
],
|
],
|
||||||
preset: "ts-jest",
|
preset: "ts-jest",
|
||||||
snapshotSerializers: ['miniprogram-simulate/jest-snapshot-plugin'],
|
snapshotSerializers: ['miniprogram-simulate/jest-snapshot-plugin']
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user