mirror of
https://github.com/maputnik/editor.git
synced 2025-12-06 06:10:00 +00:00
Add Cypress code coverage using Istanbul nyc  --------- Co-authored-by: shelly_goldblit <shelly_goldblit@dell.com> Co-authored-by: Harel M <harel.mazor@gmail.com>
19 lines
390 B
JSON
19 lines
390 B
JSON
{
|
|
"all": true,
|
|
"extends": "@istanbuljs/nyc-config-typescript",
|
|
"check-coverage": false,
|
|
"include": ["src/**/*.ts", "src/**/*.tsx"],
|
|
"exclude": [
|
|
"cypress/**/*.*",
|
|
"**/*.d.ts",
|
|
"**/*.cy.tsx",
|
|
"**/*.cy.ts",
|
|
"./coverage/**",
|
|
"./cypress/**",
|
|
"./dist/**",
|
|
"node_modules"
|
|
],
|
|
"report-dir": "coverage",
|
|
"reporter": ["json", "lcov", "json-summary"]
|
|
}
|