mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
12 lines
330 B
JavaScript
12 lines
330 B
JavaScript
module.exports = {
|
|
testEnvironment: 'node',
|
|
coverageDirectory: './coverage/',
|
|
collectCoverageFrom: [
|
|
'lib/!(app)/**',
|
|
'!lib/builder/webpack/plugins/vue/**'
|
|
],
|
|
setupTestFrameworkScriptFile: './test/utils/setup',
|
|
testPathIgnorePatterns: ['test/fixtures/.*/.*?/'],
|
|
moduleFileExtensions: ['js', 'mjs', 'json']
|
|
}
|