You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
awesome/src/app/services/patient-dashboard.service.s...

19 lines
525 B
TypeScript

import { HttpClientTestingModule } from '@angular/common/http/testing';
import { TestBed } from '@angular/core/testing';
import { PatientDashboardService } from './patient-dashboard.service';
describe('PatientDashboardService', () => {
let service: PatientDashboardService;
beforeEach(() => {
TestBed.configureTestingModule({
imports: [HttpClientTestingModule]
});
service = TestBed.inject(PatientDashboardService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});