blob: 9b6264e43f5e133c73e556a099606e51163cf375 [file] [log] [blame]
import { TestBed, inject } from '@angular/core/testing';
import { HttpClientModule } from '@angular/common/http';
import { RouterTestingModule } from '@angular/router/testing';
import { ClusterService } from './cluster.service';
describe('ClusterService', () => {
beforeEach(() => {
TestBed.configureTestingModule({
imports: [HttpClientModule, RouterTestingModule],
providers: [ClusterService],
});
});
it('should ...', inject([ClusterService], (service: ClusterService) => {
expect(service).toBeTruthy();
}));
});