Skip to content

Commit

Permalink
2.6.0 - Added option to use <rootDir> in output path, Upgraded xmlbui…
Browse files Browse the repository at this point in the history
…lder to v13.0.2, Removed broken test
  • Loading branch information
Hargne committed Sep 2, 2019
1 parent 889c1c6 commit 9b7c3eb
Show file tree
Hide file tree
Showing 5 changed files with 9,173 additions and 8,729 deletions.
59 changes: 23 additions & 36 deletions jest.config.json
Original file line number Diff line number Diff line change
@@ -1,36 +1,23 @@
{
"roots": ["<rootDir>"],
"collectCoverage": true,
"collectCoverageFrom" : [
"src/**/*.{js,jsx}",
"!src/style.js",
"!**/test/*.{js,jsx}",
"!**/node_modules/**",
"!**/coverage/**",
"!**/vendor/**"
],
"coverageDirectory": "./coverage",
"coverageReporters": ["json", "html", "text", "text-summary"],
"coverageThreshold": {
"global": {
"branches": 50,
"functions": 50,
"lines": 50,
"statements": 50
}
},
"testResultsProcessor": "./src",
"reporters": [
"default",
[
"./src",
{
"pageTitle": "Test Suite Report",
"outputPath": "test-report.html",
"includeFailureMsg": true,
"includeConsoleLog": true,
"sort": "titleAsc"
}
]
]
}
{
"roots": ["<rootDir>"],
"collectCoverage": true,
"collectCoverageFrom" : [
"src/**/*.{js,jsx}",
"!src/style.js",
"!**/test/*.{js,jsx}",
"!**/node_modules/**",
"!**/coverage/**",
"!**/vendor/**"
],
"coverageDirectory": "./coverage",
"coverageReporters": ["json", "html", "text", "text-summary"],
"coverageThreshold": {
"global": {
"branches": 50,
"functions": 50,
"lines": 50,
"statements": 50
}
},
"testResultsProcessor": "./src"
}
Loading

0 comments on commit 9b7c3eb

Please sign in to comment.