From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Thu, 19 Dec 2024 16:05:06 +0000 (-0800) Subject: Fix: resolve test warning X-Git-Tag: v2.14.0~1^2~45 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=20b7ff9f9f4ae4dc02cb7438e58db4ff99a775dd;p=thirdparty%2Fpaperless-ngx.git Fix: resolve test warning --- diff --git a/src-ui/src/app/components/admin/logs/logs.component.spec.ts b/src-ui/src/app/components/admin/logs/logs.component.spec.ts index 07a5d85d2d..2c17e2e820 100644 --- a/src-ui/src/app/components/admin/logs/logs.component.spec.ts +++ b/src-ui/src/app/components/admin/logs/logs.component.spec.ts @@ -1,6 +1,7 @@ import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' import { provideHttpClientTesting } from '@angular/common/http/testing' import { ComponentFixture, TestBed } from '@angular/core/testing' +import { FormsModule, ReactiveFormsModule } from '@angular/forms' import { BrowserModule, By } from '@angular/platform-browser' import { NgbModule, NgbNavLink } from '@ng-bootstrap/ng-bootstrap' import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons' @@ -37,6 +38,8 @@ describe('LogsComponent', () => { BrowserModule, NgbModule, NgxBootstrapIconsModule.pick(allIcons), + FormsModule, + ReactiveFormsModule, ], providers: [ provideHttpClient(withInterceptorsFromDi()),