mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-23 15:06:44 +01:00
17 lines
409 B
TypeScript
17 lines
409 B
TypeScript
|
|
import { TestBed } from '@angular/core/testing';
|
||
|
|
|
||
|
|
import { DocumentListViewService } from './document-list-view.service';
|
||
|
|
|
||
|
|
describe('DocumentListViewService', () => {
|
||
|
|
let service: DocumentListViewService;
|
||
|
|
|
||
|
|
beforeEach(() => {
|
||
|
|
TestBed.configureTestingModule({});
|
||
|
|
service = TestBed.inject(DocumentListViewService);
|
||
|
|
});
|
||
|
|
|
||
|
|
it('should be created', () => {
|
||
|
|
expect(service).toBeTruthy();
|
||
|
|
});
|
||
|
|
});
|