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