16 lines
376 B
TypeScript
16 lines
376 B
TypeScript
|
import {inject, TestBed} from '@angular/core/testing';
|
||
|
|
||
|
import {DaybookService} from './daybook.service';
|
||
|
|
||
|
describe('DaybookService', () => {
|
||
|
beforeEach(() => {
|
||
|
TestBed.configureTestingModule({
|
||
|
providers: [DaybookService]
|
||
|
});
|
||
|
});
|
||
|
|
||
|
it('should be created', inject([DaybookService], (service: DaybookService) => {
|
||
|
expect(service).toBeTruthy();
|
||
|
}));
|
||
|
});
|