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