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
There is a command for disabling Angular generate "spec" files by default
ng set defaults.class.spec=false ng set defaults.component.spec=false
UPDATE: For Angular 6
ng config schematics.@schematics/angular.component.spec false