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