mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
17 lines
367 B
TypeScript
17 lines
367 B
TypeScript
|
|
import { TestBed } from '@angular/core/testing';
|
||
|
|
|
||
|
|
import { DocumentService } from './document.service';
|
||
|
|
|
||
|
|
describe('DocumentService', () => {
|
||
|
|
let service: DocumentService;
|
||
|
|
|
||
|
|
beforeEach(() => {
|
||
|
|
TestBed.configureTestingModule({});
|
||
|
|
service = TestBed.inject(DocumentService);
|
||
|
|
});
|
||
|
|
|
||
|
|
it('should be created', () => {
|
||
|
|
expect(service).toBeTruthy();
|
||
|
|
});
|
||
|
|
});
|