1
0
Files
yel-dspace-angular/src/app/admin/admin-notifications/admin-notifications-broker-source-page-component/admin-notifications-broker-source-page.component.spec.ts

26 lines
826 B
TypeScript

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 ]
})
.compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(AdminNotificationsBrokerSourcePageComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});