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