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