mirror of
https://github.com/finos/SymphonyElectron.git
synced 2024-11-22 08:57:00 -06:00
29 lines
589 B
JSON
29 lines
589 B
JSON
|
{
|
||
|
"testMatch": [
|
||
|
"**/*.test.js"
|
||
|
],
|
||
|
"verbose": true,
|
||
|
"collectCoverage": true,
|
||
|
"coverageReporters": [
|
||
|
"text",
|
||
|
"html"
|
||
|
],
|
||
|
"coverageDirectory": "out/coverage",
|
||
|
"collectCoverageFrom": [
|
||
|
"js/**/*.js",
|
||
|
"!**/node_modules/**",
|
||
|
"!**/vendor/**"
|
||
|
],
|
||
|
"reporters": [
|
||
|
"default",
|
||
|
["./node_modules/jest-html-reporter", {
|
||
|
"pageTitle": "Symphony Electron Test Result",
|
||
|
"includeFailureMsg": true,
|
||
|
"includeConsoleLog": true,
|
||
|
"theme": "lightTheme",
|
||
|
"sort": "status",
|
||
|
"outputPath": "./out/Unit Tests Report.html"
|
||
|
}]
|
||
|
]
|
||
|
}
|