Skip to content

Commit

Permalink
ignore spec files in vitest
Browse files Browse the repository at this point in the history
  • Loading branch information
XY-Wang committed Nov 25, 2024
1 parent ea61c4a commit 9dd27c0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion packages/client/vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ export default defineConfig({
'**/docs/**',
'**/test/**',
'**/dist/**',
'vitest.config.ts'
'vitest.config.ts',
'**/*.spec.*'
]
}
},
Expand Down
3 changes: 2 additions & 1 deletion packages/server/vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ export default defineConfig({
'src/services/ingress/consumer/distributed.ts',
'src/lib.ts',
'src/main.ts',
'src/cli'
'src/cli',
'**/*.spec.*'
]
},
},
Expand Down

0 comments on commit 9dd27c0

Please sign in to comment.