mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
47 lines
2.0 KiB
TypeScript
47 lines
2.0 KiB
TypeScript
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
|
|
import { ActivatedRoute } from '@angular/router';
|
|
import { TranslateModule } from '@ngx-translate/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { RouterTestingModule } from '@angular/router/testing';
|
|
import { NO_ERRORS_SCHEMA } from '@angular/core';
|
|
import { SharedModule } from '../../shared/shared.module';
|
|
import { of as observableOf } from 'rxjs';
|
|
import { NotificationsService } from '../../shared/notifications/notifications.service';
|
|
import { DeleteCollectionPageComponent } from './delete-collection-page.component';
|
|
import { CollectionDataService } from '../../core/data/collection-data.service';
|
|
import { RequestService } from '../../core/data/request.service';
|
|
import { DSONameService } from '../../core/breadcrumbs/dso-name.service';
|
|
import { DSONameServiceMock } from '../../shared/mocks/dso-name.service.mock';
|
|
|
|
describe('DeleteCollectionPageComponent', () => {
|
|
let comp: DeleteCollectionPageComponent;
|
|
let fixture: ComponentFixture<DeleteCollectionPageComponent>;
|
|
|
|
beforeEach(waitForAsync(() => {
|
|
TestBed.configureTestingModule({
|
|
imports: [TranslateModule.forRoot(), SharedModule, CommonModule, RouterTestingModule],
|
|
declarations: [DeleteCollectionPageComponent],
|
|
providers: [
|
|
{ provide: DSONameService, useValue: new DSONameServiceMock() },
|
|
{ provide: CollectionDataService, useValue: {} },
|
|
{ provide: ActivatedRoute, useValue: { data: observableOf({ dso: { payload: {} } }) } },
|
|
{ provide: NotificationsService, useValue: {} },
|
|
{ provide: RequestService, useValue: {} }
|
|
],
|
|
schemas: [NO_ERRORS_SCHEMA]
|
|
}).compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(DeleteCollectionPageComponent);
|
|
comp = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
describe('frontendURL', () => {
|
|
it('should have the right frontendURL set', () => {
|
|
expect((comp as any).frontendURL).toEqual('/collections/');
|
|
});
|
|
});
|
|
});
|