-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathjest.config.js
More file actions
32 lines (32 loc) · 778 Bytes
/
Copy pathjest.config.js
File metadata and controls
32 lines (32 loc) · 778 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
module.exports = {
moduleFileExtensions: [
'js',
'jsx',
'json',
'vue'
],
transform: {
'^.+\\.vue$': require.resolve('vue-jest'),
'.+\\.(css|styl|less|sass|scss|svg|png|jpg|ttf|woff|woff2)$': require.resolve('jest-transform-stub'),
'^.+\\.jsx?$': require.resolve('./jest.transform.js')
},
globals: {
'vue-jest': {
babelConfig: {
plugins: [require('babel-plugin-transform-es2015-modules-commonjs')]
}
}
},
snapshotSerializers: [
'jest-serializer-vue'
],
transformIgnorePatterns: ['/node_modules/'],
moduleNameMapper: {
'^@/(.*)$': '<rootDir>/src/$1',
},
testEnvironment: 'jest-environment-jsdom-fifteen',
testMatch: [
'**/test/**/*.spec.[jt]s?(x)',
'**/__tests__/*.[jt]s?(x)'
]
}