Skip to content

Commit

Permalink
test(coverage): remove v2 from coverage
Browse files Browse the repository at this point in the history
 - until testing propely v2 exclude v2 folder from coverage
  • Loading branch information
xtiannyeto committed Oct 22, 2024
1 parent bc2d8ad commit dda46a3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions frontend/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { defineConfig } from 'vitest/config'
import react from '@vitejs/plugin-react'
import * as path from 'path'
import { defineConfig } from 'vitest/config'

export default defineConfig({
plugins: [react()],
Expand Down Expand Up @@ -37,7 +37,8 @@ export default defineConfig({
branches: 50,
functions: 50,
statements: 50
}
},
exclude: ['src/v2/**/*.{js,mjs,cjs,ts,mts,cts,jsx,tsx}']
}
}
})

0 comments on commit dda46a3

Please sign in to comment.