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