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