ngx-eagle
Version:
UI component infrastructure and Design components for mobile and desktop Angular web applications.
17 lines (12 loc) • 378 B
text/typescript
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();
});
});