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