Nuxt/jest.config.js
Clark Du 9df5f49e07 feat: split builder into more refined modules (#4171)
New packages:
- `@nuxt/webpack`
- `@nuxt/generator`
2018-10-24 20:25:18 +03:30

43 lines
749 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
setupTestFrameworkScriptFile: './test/utils/setup',
coverageDirectory: './coverage',
collectCoverageFrom: [
'packages/*/src/**/*.js',
'packages/cli/bin/*'
],
coveragePathIgnorePatterns: [
'node_modules',
'packages/app',
'packages/webpack/plugins/vue'
],
testPathIgnorePatterns: [
'node_modules',
'test/fixtures/.*/.*?/',
'examples/.*'
],
transformIgnorePatterns: [
'/node_modules/',
'/dist/'
],
moduleFileExtensions: [
'js',
'json'
]
}