You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(schematics): migrate spec to skipTest to be in line with Angular CLI (#2253)
Closes: #2242
BREAKING CHANGES:
To be inline with the Angular CLI, we migrated the `--spec` to `--skipTest`.
By default skipTest is false, this way you will always be provided with `*.spec.ts files`
BEFORE:
```sh
ng generate action User --spec
```
AFTER:
```sh
ng generate action User
```
0 commit comments