angular not generate spec code example
Example 1: angular cli don't generate spec
ng g component componentName --skipTests=true
Example 2: spec false not working
ng generate component --skipTests=true component-name
Example 3: angular generate component without spec
--skipTests=true|false. When true, does not create "spec. ts" test files for the new component / directive / class / guard
Example 4: Angular generate without spec
ng generate component --skipTests=true component-name