brewman/overlord/src/app/attendance/attendance.service.spec.ts

16 lines
382 B
TypeScript
Raw Normal View History

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();
}));
});