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