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