blob: 47f54d5dfd37d48c9e6580fe4a37d67f5bdf9a71 [file] [log] [blame]
import { HttpClientTestingModule, HttpTestingController } from '@angular/common/http/testing';
import { TestBed } from '@angular/core/testing';
import { EditAuthService } from './edit-auth-service.service';
describe('EditAuthServiceService', () => {
let service: EditAuthService;
let httpTestingController: HttpTestingController;
beforeEach(() => {
TestBed.configureTestingModule({
imports:[HttpClientTestingModule]
});
service = TestBed.inject(EditAuthService);
httpTestingController = TestBed.inject(HttpTestingController);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});