angular generate component for routing code example

Example 1: ng new module w route

// Use this command to create a  lazy-loaded feature module with routing, along with its stub component.

ng generate module <MODULE_NAME> --route <ROUTE> --module app.module

Example 2: angular cli skip-tests

The name of the TypeScript configuration file for tests. Default: ... --skipTests=true|false. When true, does not create "spec.ts" test files for the app. Default: false

While generating component using cmd
>ng g c component-name --skipTests