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