I have built a really small application using angular4. I have the main app component, two subcomponents and one service. I feel like I dont need tests for such a small applicat
I would recommend not removing all the testing files just in case you want to come back to it in the future. You can however disable the cli from creating spec files in the .angular-cli.json
"defaults": {
"styleExt": "less",
"class": {
"spec": false
},
"component": {
"spec": false
},
"directive": {
"spec": false
},
"module": {
"spec": false
},
"pipe": {
"spec": false
},
"service": {
"spec": false
}
}
now whenever you use the cli to create a component, class, etc. (ng c) the spec file won't be added