Skip to content

Commit

Permalink
Explicitly specify vitest excludes
Browse files Browse the repository at this point in the history
  • Loading branch information
charludo committed Jun 25, 2024
1 parent ec599d9 commit 85ec7b7
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 85ec7b7

Please sign in to comment.