Angular: Unit Testing Routing : Expected '' to be '/route'
Am working on unit testing for my routing under my Angular app , My routes are delacred in a specific module which is imported under the app.module.ts , here is my routing module: app-routing.module.ts import { NgModule } from '@angular/core'; import { RouterModule, Routes } from '@angular/router'; import { LoginComponent } from './login/login.component'; import { WelcomeComponent } from './welcome/welcome.component'; import { CustomersListComponent } from './customer/customers-list/customers-list.component'; import { CustomerDetailComponent } from './customer/customer-detail/customer-detail