|
@@ -0,0 +1,25 @@
|
|
|
+import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
+
|
|
|
+import { SideBarComponent } from './side-bar.component';
|
|
|
+
|
|
|
+describe('SideBarComponent', () => {
|
|
|
+ let component: SideBarComponent;
|
|
|
+ let fixture: ComponentFixture<SideBarComponent>;
|
|
|
+
|
|
|
+ beforeEach(async(() => {
|
|
|
+ TestBed.configureTestingModule({
|
|
|
+ declarations: [ SideBarComponent ]
|
|
|
+ })
|
|
|
+ .compileComponents();
|
|
|
+ }));
|
|
|
+
|
|
|
+ beforeEach(() => {
|
|
|
+ fixture = TestBed.createComponent(SideBarComponent);
|
|
|
+ component = fixture.componentInstance;
|
|
|
+ fixture.detectChanges();
|
|
|
+ });
|
|
|
+
|
|
|
+ it('should create', () => {
|
|
|
+ expect(component).toBeTruthy();
|
|
|
+ });
|
|
|
+});
|