Skip to content

Commit

Permalink
Merge pull request #2875 from digitalfabrik/enhancement/explicit-vite…
Browse files Browse the repository at this point in the history
…st-excludes

Explicitly specify vitest excludes
  • Loading branch information
charludo authored Jun 25, 2024
2 parents ec599d9 + 85ec7b7 commit 3f3a2fb
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,13 @@ export default defineConfig({
ignored: "**/.venv/**",
},
},
test: {
exclude: [
"**/node_modules/**",
"**/dist/**",
"**/cypress/**",
"**/.{idea,git,cache,output,temp,direnv}/**",
"**/{karma,rollup,webpack,vite,vitest,jest,ava,babel,nyc,cypress,tsup,build}.config.*",
],
},
});

0 comments on commit 3f3a2fb

Please sign in to comment.