jest.config.js 326 B

123456789101112
  1. module.exports = {
  2. preset: '@vue/cli-plugin-unit-jest',
  3. collectCoverage: true,
  4. collectCoverageFrom: [
  5. '**/*.{vue}',
  6. '!**/node_modules/**',
  7. '!<rootDir>/dist/**',
  8. '!<rootDir>/src/plugins/**',
  9. '!<rootDir>/tests/unit/**'
  10. ],
  11. coverageReporters: ['lcov', 'text-summary']
  12. }