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