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