datasurvey/src/main/webapp/app/admin/metrics/metrics.component.spec.ts

46 lines
1.3 KiB
TypeScript

import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { HttpClientTestingModule } from '@angular/common/http/testing';
import { of } from 'rxjs';
import { MetricsComponent } from './metrics.component';
import { MetricsService } from './metrics.service';
import { Metrics } from './metrics.model';
describe('Component Tests', () => {
describe('MetricsComponent', () => {
let comp: MetricsComponent;
let fixture: ComponentFixture<MetricsComponent>;
let service: MetricsService;
beforeEach(
waitForAsync(() => {
TestBed.configureTestingModule({
imports: [HttpClientTestingModule],
declarations: [MetricsComponent],
})
.overrideTemplate(MetricsComponent, '')
.compileComponents();
})
);
beforeEach(() => {
fixture = TestBed.createComponent(MetricsComponent);
comp = fixture.componentInstance;
service = TestBed.inject(MetricsService);
});
describe('refresh', () => {
it('should call refresh on init', () => {
// GIVEN
jest.spyOn(service, 'getMetrics').mockReturnValue(of({} as Metrics));
// WHEN
comp.ngOnInit();
// THEN
expect(service.getMetrics).toHaveBeenCalled();
});
});
});
});