Tried hand at testing by fixing the spec files with import. However, still many errors and given up now.
18 lines
491 B
TypeScript
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();
|
|
}));
|
|
});
|