import { provideHttpClientTesting } from '@angular/common/http/testing'
import { ComponentFixture, TestBed } from '@angular/core/testing'
import { By } from '@angular/platform-browser'
+import { RouterModule } from '@angular/router'
import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons'
+import { routes } from 'src/app/app-routing.module'
import { LogoComponent } from '../common/logo/logo.component'
import { NotFoundComponent } from './not-found.component'
NgxBootstrapIconsModule.pick(allIcons),
NotFoundComponent,
LogoComponent,
+ RouterModule.forRoot(routes),
],
providers: [
provideHttpClient(withInterceptorsFromDi()),