paperless-ngx/src-ui/src/app/services/rest/environment.service.spec.ts
2022-08-23 19:19:21 -07:00

16 lines
381 B
TypeScript

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