mirror of
https://github.com/philomena-dev/philomena.git
synced 2025-03-31 00:37:45 +02:00
Cleanup vite config after debugging
This commit is contained in:
parent
d5d54f4733
commit
9add80dab2
1 changed files with 6 additions and 8 deletions
|
@ -70,8 +70,6 @@ export default defineConfig(({ command, mode }: ConfigEnv): UserConfig => {
|
||||||
environment: 'jsdom',
|
environment: 'jsdom',
|
||||||
// TODO Jest --randomize CLI flag equivalent, consider enabling in the future
|
// TODO Jest --randomize CLI flag equivalent, consider enabling in the future
|
||||||
// sequence: { shuffle: true },
|
// sequence: { shuffle: true },
|
||||||
// TODO Remove after figuring out what causes process to hang
|
|
||||||
// reporters: ['hanging-process'],
|
|
||||||
setupFiles: './test/vitest-setup.ts',
|
setupFiles: './test/vitest-setup.ts',
|
||||||
coverage: {
|
coverage: {
|
||||||
reporter: ['text', 'html'],
|
reporter: ['text', 'html'],
|
||||||
|
@ -86,12 +84,12 @@ export default defineConfig(({ command, mode }: ConfigEnv): UserConfig => {
|
||||||
branches: 0,
|
branches: 0,
|
||||||
functions: 0,
|
functions: 0,
|
||||||
lines: 0,
|
lines: 0,
|
||||||
// '**/utils/**/*.ts': {
|
'**/utils/**/*.ts': {
|
||||||
// statements: 100,
|
statements: 100,
|
||||||
// branches: 100,
|
branches: 100,
|
||||||
// functions: 100,
|
functions: 100,
|
||||||
// lines: 100,
|
lines: 100,
|
||||||
// },
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue