Appearance
664 - Test Suite
Test runner configuration with coverage settings. This is an example of a MAML document.
maml
{
runner: "mocha"
root: "./test"
include: [
"**/*.test.ts"
"**/*.spec.ts"
]
exclude: [
"node_modules"
"dist"
"**/*.e2e.ts"
]
# Coverage
coverage: {
enabled: true
provider: "istanbul"
thresholds: {
lines: 73
branches: 65
functions: 86
}
reporter: [
"text"
"lcov"
"html"
]
}
globals: false
timeout: 21402 # ms
}