From 6626b5b43c2da6a5d772852b7364526a91496d76 Mon Sep 17 00:00:00 2001 From: Brandon Clayton <bclayton@usgs.gov> Date: Tue, 26 Nov 2024 12:22:26 -0700 Subject: [PATCH] add providers --- .../src/app/hazard/dashboard/app.component.spec.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/projects/nshmp-apps/src/app/hazard/dashboard/app.component.spec.ts b/projects/nshmp-apps/src/app/hazard/dashboard/app.component.spec.ts index 39ededed7..10ce8a002 100644 --- a/projects/nshmp-apps/src/app/hazard/dashboard/app.component.spec.ts +++ b/projects/nshmp-apps/src/app/hazard/dashboard/app.component.spec.ts @@ -1,4 +1,7 @@ +import {provideHttpClient} from '@angular/common/http'; import {ComponentFixture, TestBed} from '@angular/core/testing'; +import {provideNoopAnimations} from '@angular/platform-browser/animations'; +import {provideRouter} from '@angular/router'; import {AppComponent} from './app.component'; @@ -9,6 +12,11 @@ describe('AppComponent', () => { beforeEach(async () => { await TestBed.configureTestingModule({ imports: [AppComponent], + providers: [ + provideHttpClient(), + provideNoopAnimations(), + provideRouter([]), + ], }).compileComponents(); fixture = TestBed.createComponent(AppComponent); -- GitLab