Files
doneit-web/src/app/services/functions/file.service.spec.ts
T

17 lines
347 B
TypeScript
Raw Normal View History

2021-09-13 12:37:58 +01:00
import { TestBed } from '@angular/core/testing';
import { FileService } from './file.service';
describe('FileService', () => {
let service: FileService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(FileService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});