Skip to content

Commit

Permalink
Update vite.config.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
garrettmflynn committed Nov 30, 2024
1 parent 816a6c4 commit 25ee1ce
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default defineConfig({
}
},
test: {
hookTimeout: 30000,
hookTimeout: 2 * 1000 * 60, // Allow 2min for each test
coverage: {
exclude: [
'**/docs/**',
Expand All @@ -18,6 +18,11 @@ export default defineConfig({
'**/coverage/**',
'**/vite.config.ts',
'**/.commoners/**',

// Packages
'packages/cli/**',
'packages/plugins/**',
'packages/testing/**',
],
}
},
Expand Down

0 comments on commit 25ee1ce

Please sign in to comment.