16 lines
382 B
TypeScript
16 lines
382 B
TypeScript
|
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();
|
||
|
}));
|
||
|
});
|