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