mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-17 08:31:18 +00:00
17 lines
363 B
TypeScript
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();
|
|
});
|
|
});
|