mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
51 lines
951 B
JavaScript
51 lines
951 B
JavaScript
module.exports = {
|
|
testEnvironment: 'node',
|
|
|
|
expand: true,
|
|
|
|
forceExit: true,
|
|
|
|
// https://github.com/facebook/jest/pull/6747 fix warning here
|
|
// But its performance overhead is pretty bad (30+%).
|
|
// detectOpenHandles: true
|
|
|
|
setupFilesAfterEnv: ['./test/utils/setup'],
|
|
|
|
coverageDirectory: './coverage',
|
|
|
|
collectCoverageFrom: [
|
|
'**/packages/*/src/**/*.js'
|
|
],
|
|
|
|
coveragePathIgnorePatterns: [
|
|
'node_modules/(?!(@nuxt|nuxt))',
|
|
'packages/webpack/src/config/plugins/vue',
|
|
'packages/server/src/jsdom'
|
|
],
|
|
|
|
testPathIgnorePatterns: [
|
|
'node_modules/(?!(@nuxt|nuxt))',
|
|
'test/fixtures/.*/.*?/',
|
|
'examples/.*'
|
|
],
|
|
|
|
transformIgnorePatterns: [
|
|
'node_modules/(?!(@nuxt|nuxt))'
|
|
],
|
|
|
|
transform: {
|
|
'^.+\\.js$': 'babel-jest',
|
|
'^.+\\.vue$': 'vue-jest'
|
|
},
|
|
|
|
moduleFileExtensions: [
|
|
'js',
|
|
'json'
|
|
],
|
|
|
|
reporters: [
|
|
'default',
|
|
['jest-junit', { outputDirectory: 'reports/junit' }]
|
|
]
|
|
}
|