diff --git a/varfish/vueapp/vite.config.js b/varfish/vueapp/vite.config.js
index 97ed95760..53f9acbd7 100644
--- a/varfish/vueapp/vite.config.js
+++ b/varfish/vueapp/vite.config.js
@@ -48,15 +48,11 @@ export default defineConfig({
       // NB: (2022-22-08: c8 only gives 100% coverage for .vue)
       provider: 'istanbul',
       reporter: ['text', 'json', 'html'],
+      include: ['src/**'],
     },
     environment: 'happy-dom',
     include: [
-      './tests/clinvarexport/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}',
-      './tests/variants/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}',
-      './tests/svs/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}',
-      './tests/cases/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}',
-      './tests/cohorts/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}',
+      'tests/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}',
     ],
-    exclude: ['./static/**/*'],
   },
 })