19 lines
521 B
JavaScript
19 lines
521 B
JavaScript
const defineJestConfig = require('@tarojs/test-utils-react/dist/jest.js').default
|
|
|
|
module.exports = defineJestConfig({
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'jsdom',
|
|
roots: ['<rootDir>/src'],
|
|
testMatch: [
|
|
'**/__tests__/**/*.{ts,tsx}',
|
|
'**/*.(test|spec).{ts,tsx}'
|
|
],
|
|
setupFilesAfterEnv: ['<rootDir>/tests/setupTests.ts'],
|
|
transformIgnorePatterns: [
|
|
'node_modules/(?!(@tarojs|swiper|@babel|@testing-library)/)'
|
|
],
|
|
moduleNameMapper: {
|
|
'\\.(css|less|scss|sass)$': 'identity-obj-proxy'
|
|
},
|
|
})
|