travopti/frontend/src/app/components/region-stats/region-stats.component.spec.ts
2020-06-19 13:35:10 +02:00

26 lines
660 B
TypeScript

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