mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
14 lines
401 B
JavaScript
14 lines
401 B
JavaScript
module.exports = {
|
|
testEnvironment: 'node',
|
|
coverageDirectory: './coverage/',
|
|
coveragePathIgnorePatterns: [
|
|
'<rootDir>/node_modules/',
|
|
'<rootDir>/lib/builder/webpack/plugins/vue',
|
|
'<rootDir>/lib/[^/]*\\.js'
|
|
],
|
|
setupTestFrameworkScriptFile: './test/utils/setup',
|
|
testPathIgnorePatterns: ['test/fixtures/.*/.*?/'],
|
|
moduleFileExtensions: ['js', 'mjs', 'json'],
|
|
expand: true
|
|
}
|