Example 6972
Test Suite
Test runner configuration with coverage settings.
{
runner: "jest"
root: "./test"
include: [
"**/*.test.ts"
"**/*.spec.ts"
]
exclude: [
"node_modules"
"dist"
"**/*.e2e.ts"
]
# Coverage
coverage: {
enabled: true
provider: "v8"
thresholds: {
lines: 95
branches: 90
functions: 79
}
reporter: [
"text"
"lcov"
"html"
]
}
globals: true
timeout: 14216 # ms
}