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