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