I'd like to generate two spec files for each component, one to test the TS file and one for testing the HTML file (some might say unit testing and integration testing)
So something like this:
components └──credit-card ├── credit-card.component.css ├── credit-card.component.html ├── credit-card.component.spec.ts ├── credit-card.component.unit.spec.ts └── credit-card.component.ts Generally, ng g c will create a spec file by default, but I'm interested in modifying the command somehow to create multiple spec files by default. Is this possible?