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