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