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

26 lines
665 B
TypeScript

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { LeftSideBarComponent } from './left-side-bar.component';
describe('LeftSideBarComponent', () => {
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();
});
});