Skip to content
Snippets Groups Projects
Unverified Commit 3d5b0524 authored by Ariya Hidayat's avatar Ariya Hidayat Committed by GitHub
Browse files

Fix tracking and reporting front-end coverage for EE (#17506)

parent ae26bb6e
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,6 @@
"modulePaths": [
"<rootDir>/frontend/test",
"<rootDir>/frontend/src",
"<rootDir>/enterprise/frontend/test",
"<rootDir>/enterprise/frontend/src"
],
"setupFiles": [
......@@ -25,7 +24,12 @@
},
"coverageDirectory": "./coverage",
"coverageReporters": ["text", "html", "lcov"],
"collectCoverageFrom": ["frontend/src/**/*.js", "frontend/src/**/*.jsx"],
"collectCoverageFrom": [
"frontend/src/**/*.js",
"frontend/src/**/*.jsx",
"enterprise/frontend/src/**/*.js",
"enterprise/frontend/src/**/*.jsx"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/frontend/src/metabase/visualizations/lib/errors.js",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment