vant-weapp/jest.config.js
2021-12-21 09:51:43 +08:00

20 lines
561 B
JavaScript

module.exports = {
bail: 1,
verbose: true,
testEnvironment: 'jsdom',
testURL: 'https://jest.test',
moduleFileExtensions: ['js', 'ts'],
testMatch: ['<rootDir>/packages/**/test/**/*.spec.{js,ts}'],
transformIgnorePatterns: ["/node_modules/(?!@vant/)"],
transform: {
"^.+\\.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']
}