mirror of
https://github.com/immich-app/immich.git
synced 2025-03-11 02:23:09 -05:00
fix(server): coverage reports (#11925)
This commit is contained in:
parent
8285803c95
commit
cde0458dc8
1 changed files with 10 additions and 0 deletions
|
@ -6,6 +6,16 @@ export default defineConfig({
|
||||||
test: {
|
test: {
|
||||||
root: './',
|
root: './',
|
||||||
globals: true,
|
globals: true,
|
||||||
|
coverage: {
|
||||||
|
provider: 'v8',
|
||||||
|
include: ['src/cores/**', 'src/interfaces/**', 'src/services/**', 'src/utils/**'],
|
||||||
|
thresholds: {
|
||||||
|
lines: 80,
|
||||||
|
statements: 80,
|
||||||
|
branches: 85,
|
||||||
|
functions: 85,
|
||||||
|
},
|
||||||
|
},
|
||||||
server: {
|
server: {
|
||||||
deps: {
|
deps: {
|
||||||
fallbackCJS: true,
|
fallbackCJS: true,
|
||||||
|
|
Loading…
Add table
Reference in a new issue