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