Sengi-Windows-MacOS-Linux/src/app/components/left-side-bar/left-side-bar.component.spe...

26 lines
666 B
TypeScript
Raw Normal View History

2018-03-16 01:43:53 +01:00
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { LeftSideBarComponent } from './left-side-bar.component';
2018-10-28 21:58:06 +01:00
xdescribe('LeftSideBarComponent', () => {
2018-03-16 01:43:53 +01:00
let component: LeftSideBarComponent;
let fixture: ComponentFixture<LeftSideBarComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ LeftSideBarComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(LeftSideBarComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});