From ea632d041734bd1a3af19744aee86d48f30ac735 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Tue, 16 Jan 2024 23:01:50 -0800 Subject: [PATCH] Fix missing frontend test imports --- .../manage/custom-fields/custom-fields.component.spec.ts | 2 ++ .../app/components/manage/workflows/workflows.component.spec.ts | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src-ui/src/app/components/manage/custom-fields/custom-fields.component.spec.ts b/src-ui/src/app/components/manage/custom-fields/custom-fields.component.spec.ts index 412fe3cc1..9e8663383 100644 --- a/src-ui/src/app/components/manage/custom-fields/custom-fields.component.spec.ts +++ b/src-ui/src/app/components/manage/custom-fields/custom-fields.component.spec.ts @@ -11,6 +11,7 @@ import { NgbPaginationModule, NgbModalModule, NgbModalRef, + NgbPopoverModule, } from '@ng-bootstrap/ng-bootstrap' import { of, throwError } from 'rxjs' import { IfPermissionsDirective } from 'src/app/directives/if-permissions.directive' @@ -64,6 +65,7 @@ describe('CustomFieldsComponent', () => { FormsModule, ReactiveFormsModule, NgbModalModule, + NgbPopoverModule, ], }) diff --git a/src-ui/src/app/components/manage/workflows/workflows.component.spec.ts b/src-ui/src/app/components/manage/workflows/workflows.component.spec.ts index 1abbd2c5a..adf174207 100644 --- a/src-ui/src/app/components/manage/workflows/workflows.component.spec.ts +++ b/src-ui/src/app/components/manage/workflows/workflows.component.spec.ts @@ -7,6 +7,7 @@ import { NgbPaginationModule, NgbModalRef, NgbModalModule, + NgbPopoverModule, } from '@ng-bootstrap/ng-bootstrap' import { of, throwError } from 'rxjs' import { Workflow } from 'src/app/data/workflow' @@ -99,6 +100,7 @@ describe('WorkflowsComponent', () => { FormsModule, ReactiveFormsModule, NgbModalModule, + NgbPopoverModule, ], })