Files
paperless-ngx/src-ui/src/app/services/app-view.service.spec.ts
2020-12-27 23:05:19 -08:00

17 lines
363 B
TypeScript

import { TestBed } from '@angular/core/testing';
import { AppViewService } from './app-view.service';
describe('AppViewService', () => {
let service: AppViewService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(AppViewService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});