mirror of
https://github.com/nuxt/nuxt.git
synced 2025-02-07 09:22:27 +00:00
12 lines
333 B
JavaScript
12 lines
333 B
JavaScript
module.exports = {
|
|
testEnvironment: 'node',
|
|
coverageDirectory: './coverage/',
|
|
collectCoverageFrom: [
|
|
'!<rootDir>/lib/builder/webpack/plugins/vue/'
|
|
],
|
|
setupTestFrameworkScriptFile: './test/utils/setup',
|
|
testPathIgnorePatterns: ['test/fixtures/.*/.*?/'],
|
|
moduleFileExtensions: ['js', 'mjs', 'json'],
|
|
expand: true
|
|
}
|