File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -8,13 +8,13 @@ export default defineConfig({
8
8
coverage : {
9
9
include : [ "src/schemas/validation/**/*.yaml" ] ,
10
10
thresholds : process . env . BASE !== "dev" ? {
11
- statements : 99.42 , // should be 100% but we are missing some tests
12
- lines : 99.42 , // should be 100% but we are missing some tests
13
- functions : 92.58 , // should be 100% but we are missing some tests
14
- // branches: 56.77, // need to discuss whether we should check/increase this
11
+ statements : 100 , // JSON Schema keywords
12
+ lines : 100 ,
13
+ functions : 100 , // subschemas, for example with `properties`
14
+ // branches: 56.77, // branch coverage isn't that useful
15
15
} : { }
16
16
} ,
17
17
forceRerunTriggers : [ '**/scripts/**' , '**/tests/**' ] ,
18
- testTimeout : 10000 , // 10 seconds
18
+ testTimeout : 20000 , // 20 seconds
19
19
} ,
20
20
} )
You can’t perform that action at this time.
0 commit comments