paperless-ngx/src-ui/src/app/services/rest/document.service.spec.ts

17 lines
358 B
TypeScript
Raw Normal View History

import { TestBed } from '@angular/core/testing'
2020-10-27 01:10:18 +01:00
import { DocumentService } from './document.service'
2020-10-27 01:10:18 +01:00
describe('DocumentService', () => {
let service: DocumentService
2020-10-27 01:10:18 +01:00
beforeEach(() => {
TestBed.configureTestingModule({})
service = TestBed.inject(DocumentService)
})
2020-10-27 01:10:18 +01:00
it('should be created', () => {
expect(service).toBeTruthy()
})
})