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; 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(); }); });