Skip to content

Commit

Permalink
ci: add retries
Browse files Browse the repository at this point in the history
  • Loading branch information
sumitkolhe committed Mar 31, 2024
1 parent 4b78883 commit 4afbe87
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion vitest.config.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
import { defineConfig } from 'vitest/config'
import { configDefaults, defineConfig } from 'vitest/config'

export default defineConfig({
test: {
include: ['src/**/*.spec.ts'],
exclude: [...configDefaults.exclude],
testTimeout: 30000,
retry: 3,
coverage: {
enabled: false, // TODO: enable coverage once all tests are passing
include: ['src/common', 'src/modules'],
provider: 'v8',
thresholds: {
statements: 100,
Expand Down

0 comments on commit 4afbe87

Please sign in to comment.