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