forked from hazza/dspace-angular
28 lines
955 B
TypeScript
28 lines
955 B
TypeScript
import { NO_ERRORS_SCHEMA } from '@angular/core';
|
|
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { AdminNotificationsBrokerSourcePageComponent } from './admin-notifications-broker-source-page.component';
|
|
|
|
describe('AdminNotificationsBrokerSourcePageComponent', () => {
|
|
let component: AdminNotificationsBrokerSourcePageComponent;
|
|
let fixture: ComponentFixture<AdminNotificationsBrokerSourcePageComponent>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
declarations: [ AdminNotificationsBrokerSourcePageComponent ],
|
|
schemas: [NO_ERRORS_SCHEMA]
|
|
})
|
|
.compileComponents();
|
|
});
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(AdminNotificationsBrokerSourcePageComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create AdminNotificationsBrokerSourcePageComponent', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|