import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { DeviceDetailsComponent } from './device-details.component'; import { DeviceDetailsModule } from './device-details.module'; describe('DeviceSequenceItemComponent', () => { let component: DeviceDetailsComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ imports: [DeviceDetailsModule], }).compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(DeviceDetailsComponent); component = fixture.componentInstance; component.device = { IpAddress: '172.18.1.2', Name: 'KUMC-G430-21', Ext: 'CAB22MedProVirt', }; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });