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