diff --git a/src/app/app.component.spec.ts b/src/app/app.component.spec.ts index 4f6b124f12..b7d3b2c94a 100644 --- a/src/app/app.component.spec.ts +++ b/src/app/app.component.spec.ts @@ -6,7 +6,7 @@ import { MatMenuModule } from '@angular/material/menu'; import { MatToolbarModule } from '@angular/material/toolbar'; import { RouterTestingModule } from '@angular/router/testing'; import { KnoraApiConnection } from '@dasch-swiss/dsp-js'; -import { AppInitService, DspActionModule, DspSearchModule } from '@dasch-swiss/dsp-ui'; +import { AppInitService, DspActionModule } from '@dasch-swiss/dsp-ui'; import { TranslateModule } from '@ngx-translate/core'; import { TestConfig } from 'test.config'; import { AppComponent } from './app.component'; @@ -32,7 +32,6 @@ describe('AppComponent', () => { MatMenuModule, MatToolbarModule, DspActionModule, - DspSearchModule, RouterTestingModule, TranslateModule.forRoot() ], diff --git a/src/app/app.module.ts b/src/app/app.module.ts index 4c3c9b0098..93b6f439fe 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -7,7 +7,7 @@ import { FormsModule, ReactiveFormsModule } from '@angular/forms'; import { BrowserModule } from '@angular/platform-browser'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { KnoraApiConnection } from '@dasch-swiss/dsp-js'; -import { DspActionModule, DspSearchModule, DspViewerModule } from '@dasch-swiss/dsp-ui'; +import { DspActionModule, DspViewerModule } from '@dasch-swiss/dsp-ui'; import { TranslateLoader, TranslateModule } from '@ngx-translate/core'; import { TranslateHttpLoader } from '@ngx-translate/http-loader'; import { AngularSplitModule } from 'angular-split'; @@ -320,7 +320,6 @@ export function httpLoaderFactory(httpClient: HttpClient) { ColorPickerModule, CommonModule, DspActionModule, - DspSearchModule, DspViewerModule, FormsModule, HttpClientModule, diff --git a/src/app/main/header/header.component.spec.ts b/src/app/main/header/header.component.spec.ts index 379779e3a6..5d65c69e3c 100644 --- a/src/app/main/header/header.component.spec.ts +++ b/src/app/main/header/header.component.spec.ts @@ -9,7 +9,7 @@ import { By } from '@angular/platform-browser'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { RouterTestingModule } from '@angular/router/testing'; import { KnoraApiConnection } from '@dasch-swiss/dsp-js'; -import { DspActionModule, DspSearchModule } from '@dasch-swiss/dsp-ui'; +import { DspActionModule } from '@dasch-swiss/dsp-ui'; import { TranslateModule } from '@ngx-translate/core'; import { AppInitService } from 'src/app/app-init.service'; import { ComponentCommunicationEventService, EmitEvent, Events } from 'src/app/main/services/component-communication-event.service'; @@ -65,7 +65,6 @@ describe('HeaderComponent', () => { BrowserAnimationsModule, HttpClientModule, DspActionModule, - DspSearchModule, MatIconModule, MatListModule, MatMenuModule,