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