Files
doneit-web/src/app/Rules/document.service.spec.ts
T

17 lines
367 B
TypeScript
Raw Normal View History

2021-07-29 10:13:39 +01:00
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();
});
});