Nuxt/jest.config.js

16 lines
457 B
JavaScript
Raw Normal View History

2018-03-18 23:41:14 +00:00
module.exports = {
2018-03-19 15:49:16 +00:00
testEnvironment: 'node',
coverageDirectory: './coverage/',
collectCoverageFrom: [
'lib/!(app)/**',
'!lib/builder/webpack/plugins/vue/**'
],
setupTestFrameworkScriptFile: './test/utils/setup',
testPathIgnorePatterns: ['test/fixtures/.*/.*?/'],
2018-07-24 10:12:46 +00:00
moduleFileExtensions: ['js', 'mjs', 'json'],
expand: true,
forceExit: true,
// https://github.com/facebook/jest/pull/6747 fix warning here
2018-07-24 10:12:46 +00:00
detectOpenHandles: true
2018-03-18 23:41:14 +00:00
}