Skip to content

Commit

Permalink
Disable fileParallelism during CI
Browse files Browse the repository at this point in the history
  • Loading branch information
aryaemami59 committed Mar 13, 2024
1 parent 37f412e commit 76348aa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ export default defineConfig({
]
},
testTimeout: 20_000,
retry: process.env.CI ? 1 : 0
retry: process.env.CI ? 1 : 0,
fileParallelism: !process.env.CI
},
server: { watch: { ignored: ['**/fixtures', '**/dist', '**/out'] } }
})

0 comments on commit 76348aa

Please sign in to comment.