mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-19 10:19:27 -05: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();
|
|
});
|
|
});
|