import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { RaiseExceptionComponent } from './raise-exception.component'; describe('RaiseExceptionComponent', () => { let component: RaiseExceptionComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ RaiseExceptionComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(RaiseExceptionComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });