From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Wed, 24 Apr 2024 07:28:18 +0000 (-0700) Subject: Fix missing test import X-Git-Tag: v2.8.0~3^2~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d03e48ea88fec828f13e3168b9dbc395485f852c;p=thirdparty%2Fpaperless-ngx.git Fix missing test import --- diff --git a/src-ui/src/app/components/document-history/document-history.component.spec.ts b/src-ui/src/app/components/document-history/document-history.component.spec.ts index 3a26c8a9b8..90108a9719 100644 --- a/src-ui/src/app/components/document-history/document-history.component.spec.ts +++ b/src-ui/src/app/components/document-history/document-history.component.spec.ts @@ -7,7 +7,7 @@ import { AuditLogAction } from 'src/app/data/auditlog-entry' import { HttpClientTestingModule } from '@angular/common/http/testing' import { CustomDatePipe } from 'src/app/pipes/custom-date.pipe' import { DatePipe } from '@angular/common' -import { NgbCollapseModule } from '@ng-bootstrap/ng-bootstrap' +import { NgbCollapseModule, NgbTooltipModule } from '@ng-bootstrap/ng-bootstrap' import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons' describe('DocumentHistoryComponent', () => { @@ -23,6 +23,7 @@ describe('DocumentHistoryComponent', () => { HttpClientTestingModule, NgbCollapseModule, NgxBootstrapIconsModule.pick(allIcons), + NgbTooltipModule, ], }).compileComponents()