From d03e48ea88fec828f13e3168b9dbc395485f852c Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Wed, 24 Apr 2024 00:28:18 -0700 Subject: [PATCH] Fix missing test import --- .../document-history/document-history.component.spec.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 3a26c8a9b..90108a971 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()