Skip to content

Commit

Permalink
Merge pull request #11142 from pascalgrimaud/11106-fix-vitest-config-…
Browse files Browse the repository at this point in the history
…after-prettier-format

Fix vitest config after prettier format to allow applying front modules
  • Loading branch information
pascalgrimaud authored Oct 25, 2024
2 parents 47da194 + f045309 commit 48cff7f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ export default defineConfig({
},
include: ['src/main/webapp/**/*.ts?(x)'],
exclude: [
// keep this comment to be able to apply other front module after prettier format
...configDefaults.coverage.exclude as string[],
],
provider: 'istanbul',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ export default defineConfig({
},
include: ['src/main/webapp/**/*.ts?(x)'],
exclude: [
// keep this comment to be able to apply other front module after prettier format
...configDefaults.coverage.exclude as string[],
'src/main/webapp/app/injections.ts',
'src/main/webapp/app/index.tsx',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ export default defineConfig({
},
include: ['src/main/webapp/**/*.ts?(x)'],
exclude: [
// keep this comment to be able to apply other front module after prettier format
...configDefaults.coverage.exclude as string[],
'src/main/webapp/app/main.ts',
'src/main/webapp/app/injections.ts',
Expand Down

0 comments on commit 48cff7f

Please sign in to comment.