blob: 68e7c13187de41677e56e8c02643fea17382f617 [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();
}));
});