argos/dmp-frontend/src/app/ui/dashboard/info-counter/info-counter.component.spec.ts

26 lines
664 B
TypeScript

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