15 lines
378 B
TypeScript
15 lines
378 B
TypeScript
|
|
import { TestBed, inject } from '@angular/core/testing';
|
||
|
|
import { DocumentService } from './document.service';
|
||
|
|
|
||
|
|
describe('DocumentService', () => {
|
||
|
|
beforeEach(() => {
|
||
|
|
TestBed.configureTestingModule({
|
||
|
|
providers: [DocumentService]
|
||
|
|
});
|
||
|
|
});
|
||
|
|
|
||
|
|
it('should ...', inject([DocumentService], (service: DocumentService) => {
|
||
|
|
expect(service).toBeTruthy();
|
||
|
|
}));
|
||
|
|
});
|