Skip to content

Commit

Permalink
Merge pull request #2885 from glific/test-coverage
Browse files Browse the repository at this point in the history
exclude assets
  • Loading branch information
kurund authored May 10, 2024
2 parents b677596 + fddd2ce commit b488524
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export default ({ command, mode }: ConfigEnv): UserConfigExport => {
// choosing istanbul for now because of this https://github.com/vitest-dev/vitest/issues/1252
provider: 'istanbul', // or 'c8',
include: ['src/**/**'],
exclude: ['node_modules/', '**/*.test.tsx'],
exclude: ['node_modules/', '**/*.test.tsx', './src/assets/**'],
},
css: true,
},
Expand Down

0 comments on commit b488524

Please sign in to comment.