Is there a way to get rid of the spec.ts file in Angular 2+, whenever I create a new component. I know this is for testing purpose but what if I don\'t need it.
May be t
Angular < 8 $ ng g component component-name --spec=false
$ ng g component component-name --spec=false
Angular > 8 $ ng g component component-name --skipTests=false --flat
$ ng g component component-name --skipTests=false --flat
$ ng g component employee/listEmployees --skipTests=false --flat