From e1dde85c59cd9a2d3f03429d93442e0d24b9e728 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sun, 19 Jan 2025 10:46:57 -0800 Subject: [PATCH] Fix failing test --- .../src/app/components/not-found/not-found.component.spec.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src-ui/src/app/components/not-found/not-found.component.spec.ts b/src-ui/src/app/components/not-found/not-found.component.spec.ts index 58861da44..219c6c1f9 100644 --- a/src-ui/src/app/components/not-found/not-found.component.spec.ts +++ b/src-ui/src/app/components/not-found/not-found.component.spec.ts @@ -2,7 +2,9 @@ import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' 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' @@ -16,6 +18,7 @@ describe('NotFoundComponent', () => { NgxBootstrapIconsModule.pick(allIcons), NotFoundComponent, LogoComponent, + RouterModule.forRoot(routes), ], providers: [ provideHttpClient(withInterceptorsFromDi()),