From 60a4e92fccc4d1ef0dafcc9d72bf47d6ab64f1f4 Mon Sep 17 00:00:00 2001 From: Siarhei Huzarevich Date: Sun, 15 Sep 2024 16:53:20 +0200 Subject: [PATCH] fix: Fixed tests after removing @foblex/core --- .../domain/sort-item-layers/sort-item-layers.execution.spec.ts | 2 +- .../update-item-and-children-layers.execution.spec.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/f-flow/src/domain/sort-item-layers/sort-item-layers.execution.spec.ts b/projects/f-flow/src/domain/sort-item-layers/sort-item-layers.execution.spec.ts index 801cf3d5..4b94f30f 100644 --- a/projects/f-flow/src/domain/sort-item-layers/sort-item-layers.execution.spec.ts +++ b/projects/f-flow/src/domain/sort-item-layers/sort-item-layers.execution.spec.ts @@ -2,11 +2,11 @@ import { TestBed } from '@angular/core/testing'; import { FCanvasBase, FComponentsStore, - FMediator, FNodeBase, GetDeepChildrenNodesAndGroupsExecution, SortItemLayersExecution, SortItemLayersRequest, SortItemsByParentExecution, SortNodeLayersExecution, } from '@foblex/flow'; import { setupTestModule } from '../test-setup'; +import { FMediator } from '@foblex/mediator'; function createNode(id: string, element: HTMLElement, parentId?: string): FNodeBase { return { diff --git a/projects/f-flow/src/domain/update-item-and-children-layers/update-item-and-children-layers.execution.spec.ts b/projects/f-flow/src/domain/update-item-and-children-layers/update-item-and-children-layers.execution.spec.ts index 1dac2b51..8bd58609 100644 --- a/projects/f-flow/src/domain/update-item-and-children-layers/update-item-and-children-layers.execution.spec.ts +++ b/projects/f-flow/src/domain/update-item-and-children-layers/update-item-and-children-layers.execution.spec.ts @@ -8,12 +8,12 @@ import { SortItemLayersRequest, SortItemsByParentExecution, SortNodeLayersExecution, UpdateItemAndChildrenLayersExecution } from '@foblex/flow'; -import { FMediator } from '@foblex/flow'; import { UpdateItemAndChildrenLayersRequest } from '@foblex/flow'; import { FComponentsStore, } from '@foblex/flow'; import { setupTestModule } from '../test-setup'; +import { FMediator } from '@foblex/mediator'; function createElement(id: string): HTMLElement { const element = document.createElement('div');