test(@angular-devkit/build-angular): correctly disable caching in unit-tests

The unit-tests where intended to not use build caching to better ensure test isolation. However, the configuration format was incorrect and did not disable the build caching.
This commit is contained in:
Charles Lyding 2021-10-06 16:32:30 -04:00 committed by Joey Perrott
parent 5a958884f6
commit 93ae204047
2 changed files with 6 additions and 2 deletions

View File

@ -3,7 +3,9 @@
"version": 1,
"newProjectRoot": "./projects",
"cli": {
"enabled": false
"cache": {
"enabled": false
}
},
"schematics": {},
"targets": {},

View File

@ -2,7 +2,9 @@
"$schema": "../../../../packages/angular_devkit/core/src/workspace/workspace-schema.json",
"version": 1,
"cli": {
"enabled": false
"cache": {
"enabled": false
}
},
"projects": {
"lib": {