mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2026-09-09 18:02:54 +00:00
Fixed configuration issue preventing unit tests for rules getting executed (#4466)
* Fixed configuration issue preventing unit tests for rules getting executed * Added unit tests for SnackbarEffects to improve coverage * Added unit tests for RouterEffects to improve coverage * Excluding store actions, models, selectors and states from getting included in code coverage * Added type to store
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "aca-shared",
|
||||
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
||||
"sourceRoot": "projects/aca-shared/src",
|
||||
"sourceRoot": "projects/aca-shared",
|
||||
"projectType": "library",
|
||||
"prefix": "lib",
|
||||
"targets": {
|
||||
@@ -26,6 +26,12 @@
|
||||
"main": "projects/aca-shared/test.ts",
|
||||
"tsConfig": "projects/aca-shared/tsconfig.spec.json",
|
||||
"karmaConfig": "projects/aca-shared/karma.conf.js",
|
||||
"codeCoverageExclude": [
|
||||
"projects/aca-shared/store/src/actions/**",
|
||||
"projects/aca-shared/store/src/models/**",
|
||||
"projects/aca-shared/store/src/selectors/**",
|
||||
"projects/aca-shared/store/src/states/**"
|
||||
],
|
||||
"stylePreprocessorOptions": {
|
||||
"includePaths": ["node_modules"]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user