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