Files
brewman/overlord/src/app/attendance/attendance.service.spec.ts
tanshu cefb3ebdcc Removed old rules from eslint
Tried hand at testing by fixing the spec files with import. However, still many errors and given up now.
2020-10-02 16:24:29 +05:30

18 lines
491 B
TypeScript

import { inject, TestBed } from '@angular/core/testing';
import { HttpClientModule } from '@angular/common/http';
import { AttendanceService } from './attendance.service';
describe('AttendanceService', () => {
beforeEach(() => {
TestBed.configureTestingModule({
imports: [HttpClientModule],
providers: [AttendanceService],
});
});
it('should be created', inject([AttendanceService], (service: AttendanceService) => {
expect(service).toBeTruthy();
}));
});