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

17 lines
362 B
TypeScript
Raw Normal View History

2020-08-27 15:55:10 +01:00
import { TestBed } from '@angular/core/testing';
import { LoadingService } from './loading.service';
describe('LoadingService', () => {
let service: LoadingService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(LoadingService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});