mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00

# Conflicts: # src/app/core/auth/auth.service.ts # src/app/info/info-routing-paths.ts # src/app/info/info-routing.module.ts # src/app/info/info.module.ts # src/app/shared/live-region/live-region.service.spec.ts # src/app/shared/live-region/live-region.service.ts # src/app/shared/notifications/notifications-board/notifications-board.component.spec.ts # src/app/shared/notifications/notifications-board/notifications-board.component.ts # src/config/app-config.interface.ts # src/config/default-app-config.ts
76 lines
3.2 KiB
TypeScript
76 lines
3.2 KiB
TypeScript
import { CommonModule } from '@angular/common';
|
|
import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
|
import {
|
|
ComponentFixture,
|
|
TestBed,
|
|
} from '@angular/core/testing';
|
|
import { NoopAnimationsModule } from '@angular/platform-browser/animations';
|
|
import { Router } from '@angular/router';
|
|
import { TranslateModule } from '@ngx-translate/core';
|
|
|
|
import { AccessibilitySettingsService } from '../accessibility/accessibility-settings.service';
|
|
import { AccessibilitySettingsServiceStub } from '../accessibility/accessibility-settings.service.stub';
|
|
import { ThemedAdminSidebarComponent } from '../admin/admin-sidebar/themed-admin-sidebar.component';
|
|
import { ThemedBreadcrumbsComponent } from '../breadcrumbs/themed-breadcrumbs.component';
|
|
import { ThemedFooterComponent } from '../footer/themed-footer.component';
|
|
import { ThemedHeaderNavbarWrapperComponent } from '../header-nav-wrapper/themed-header-navbar-wrapper.component';
|
|
import { HostWindowService } from '../shared/host-window.service';
|
|
import { ThemedLoadingComponent } from '../shared/loading/themed-loading.component';
|
|
import { MenuService } from '../shared/menu/menu.service';
|
|
import { RouterMock } from '../shared/mocks/router.mock';
|
|
import { NotificationsBoardComponent } from '../shared/notifications/notifications-board/notifications-board.component';
|
|
import { CSSVariableService } from '../shared/sass-helper/css-variable.service';
|
|
import { CSSVariableServiceStub } from '../shared/testing/css-variable-service.stub';
|
|
import { HostWindowServiceStub } from '../shared/testing/host-window-service.stub';
|
|
import { MenuServiceStub } from '../shared/testing/menu-service.stub';
|
|
import { SystemWideAlertBannerComponent } from '../system-wide-alert/alert-banner/system-wide-alert-banner.component';
|
|
import { RootComponent } from './root.component';
|
|
|
|
describe('RootComponent', () => {
|
|
let component: RootComponent;
|
|
let fixture: ComponentFixture<RootComponent>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
imports: [
|
|
CommonModule,
|
|
NoopAnimationsModule,
|
|
TranslateModule.forRoot(),
|
|
RootComponent,
|
|
],
|
|
providers: [
|
|
{ provide: Router, useValue: new RouterMock() },
|
|
{ provide: MenuService, useValue: new MenuServiceStub() },
|
|
{ provide: CSSVariableService, useClass: CSSVariableServiceStub },
|
|
{ provide: HostWindowService, useValue: new HostWindowServiceStub(800) },
|
|
{ provide: AccessibilitySettingsService, useValue: new AccessibilitySettingsServiceStub() },
|
|
],
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
})
|
|
.overrideComponent(RootComponent, {
|
|
remove: {
|
|
imports: [
|
|
ThemedAdminSidebarComponent,
|
|
SystemWideAlertBannerComponent,
|
|
ThemedHeaderNavbarWrapperComponent,
|
|
ThemedBreadcrumbsComponent,
|
|
ThemedLoadingComponent,
|
|
ThemedFooterComponent,
|
|
NotificationsBoardComponent,
|
|
],
|
|
},
|
|
})
|
|
.compileComponents();
|
|
});
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(RootComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|