Fix: missing import in frontend tests

This commit is contained in:
shamoon 2024-11-29 23:01:15 -08:00
parent d1a4c1f2eb
commit 5a74a92b74
No known key found for this signature in database

View File

@ -72,6 +72,7 @@ import { IsNumberPipe } from 'src/app/pipes/is-number.pipe'
import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons' import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons'
import { PermissionsService } from 'src/app/services/permissions.service' import { PermissionsService } from 'src/app/services/permissions.service'
import { NgSelectModule } from '@ng-select/ng-select' import { NgSelectModule } from '@ng-select/ng-select'
import { PreviewPopupComponent } from '../common/preview-popup/preview-popup.component'
const docs: Document[] = [ const docs: Document[] = [
{ {
@ -137,6 +138,7 @@ describe('DocumentListComponent', () => {
UsernamePipe, UsernamePipe,
SafeHtmlPipe, SafeHtmlPipe,
IsNumberPipe, IsNumberPipe,
PreviewPopupComponent,
], ],
imports: [ imports: [
RouterTestingModule.withRoutes(routes), RouterTestingModule.withRoutes(routes),