import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { BreadcrumbComponent } from './breadcrumb.component'; describe('BreadcrumbComponent', () => { let component: BreadcrumbComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ BreadcrumbComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(BreadcrumbComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should be created', () => { expect(component).toBeTruthy(); }); });